Files
introduction-to-testing/examples/accident-counter/index.html
2024-09-17 15:38:26 -06:00

18 lines
492 B
HTML

<!doctype html>
<html>
<head>
<title>Accident Counter</title>
</head>
<script type="module">
import { createElement } from 'react';
import { createRoot } from 'react-dom/client';
import { Counter } from './src/counter.tsx';
import './styles.css';
createRoot(document.getElementById('root')).render(createElement(Counter));
</script>
<body class="container flex items-center justify-center min-h-screen">
<div class="" id="root"></div>
</body>
</html>