webapp-spa-react/index.html
Luís Murta 4160886cf5
Render transactions on <table>
Use react-router in data mode to layout the application.
Do a SSR to the datastore API /transactions.
2025-03-23 00:45:27 +00:00

14 lines
379 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Personal Finance tools web app</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>