create-reagent-app
Version:
Bootstrap a ClojureScript frontend app that uses Reagent for the user interface and Shadow-CLJS as its build tool / compiler.
33 lines (30 loc) • 1.18 kB
HTML
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Webapp created using create-reagent-app"
/>
<link rel="apple-touch-icon" href="/cljs_logo_192.png" />
<link rel="manifest" href="/manifest.json" />
<link rel="stylesheet" href="/css/style.css" type="text/css" />
<title>*|USER-PROJECT-NAME|*</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template. Do not delete this HTML file.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
Your Reagent app will be rendered within the `div` with id `root` above.
To begin in development mode, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
<script src="/js/main.js"></script>
</body>
</html>