Initial commit
This commit is contained in:
13
examples/calculator/index.html
Normal file
13
examples/calculator/index.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Calculator</title>
|
||||
<link rel="stylesheet" href="styles.css" />
|
||||
<script type="module">
|
||||
import { renderCalculator } from './src/calculator.js';
|
||||
renderCalculator(document.body);
|
||||
</script>
|
||||
</head>
|
||||
<body></body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user