Created
September 7, 2020 17:15
-
-
Save perjo927/e0a62c3665676d9e08342de389ccf2d6 to your computer and use it in GitHub Desktop.
Todo App Starter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import main from './src/main'; | |
| main(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Empty for now */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import css from "./main.css"; | |
| export default () => { | |
| // To be continued | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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