mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-24 02:36:00 +00:00
* Make modern part of the code base `yarn modern` will now start a dev server with the modern app running. The debugger is not yet setup `yarn test` will run all the tests, both Webamp and "modern". * Let debug work * Prettier * Ignore lint errors for now * Point test at the now skin location
14 lines
400 B
HTML
14 lines
400 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="theme-color" content="#000000" />
|
|
<title>React App</title>
|
|
</head>
|
|
<body>
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
<div id="root"></div>
|
|
<script src="./modern.js"></script>
|
|
</body>
|
|
</html>
|