Files
Steve Kinney a028678660 Initial commit
2024-09-13 15:59:51 -06:00

14 lines
325 B
HTML

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