Skip to content

Instantly share code, notes, and snippets.

@perjo927
Created September 7, 2020 17:15
Show Gist options
  • Select an option

  • Save perjo927/e0a62c3665676d9e08342de389ccf2d6 to your computer and use it in GitHub Desktop.

Select an option

Save perjo927/e0a62c3665676d9e08342de389ccf2d6 to your computer and use it in GitHub Desktop.
Todo App Starter
<html>
<head>
<title>Todo App</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<script src="./index.js"></script>
</body>
</html>
import main from './src/main';
main();
/* Empty for now */
import css from "./main.css";
export default () => {
// To be continued
};
{
"name": "todoapp",
"version": "1.0.0",
"description": "a todo app",
"main": "index.js",
"type": "module",
"scripts": {
"start": "parcel index.html",
"test": "mocha"
},
"author": "Per Jonsson",
"license": "ISC",
"dependencies": {
"lit-html": "^1.3.0",
"mocha": "^8.1.3",
"parcel-bundler": "^1.12.4",
"uuid": "^8.3.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment