mirror of
https://github.com/tiennm99/ai-coding-workflow-labs.git
synced 2026-09-16 16:24:03 +00:00
- Create App.jsx importing PersonForm and PeopleList - Create main.jsx entry point for Preact render - Add index.html as app entry point - Add basic CSS styles for layout - Configure Vite with @preact/preset-vite - Update vitest config for Preact/jsdom environment - Add missing dependencies (preact, vite, @preact/preset-vite)
13 lines
311 B
HTML
13 lines
311 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Bill Splitter</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|