Initial commit

This commit is contained in:
Steve Kinney
2024-09-13 15:59:51 -06:00
commit a028678660
36 changed files with 5932 additions and 0 deletions

View 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>