Initial commit from your app

This commit is contained in:
Reynier Matthieu
2025-02-02 12:02:10 +01:00
parent d4c44ece53
commit ec9da549a4
2 changed files with 16 additions and 12 deletions

View File

@@ -1,9 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>My Project</title>
</head>
<body>
<h1>Hello, World!</h1>
</body>
</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>Vite + React + TS</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>