movie-explorer/index.html

17 lines
349 B
HTML
Raw Normal View History

2024-04-29 11:19:01 +00:00
<!doctype html>
<html lang="en">
2024-05-17 11:54:28 +00:00
<head>
<meta charset="UTF-8" />
2024-10-08 09:58:35 +00:00
<link rel="icon" type="image/svg+xml" href="/popcorn.svg" />
2024-05-17 11:54:28 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2024-10-08 09:58:35 +00:00
<title>Movie Explorer</title>
2024-05-17 11:54:28 +00:00
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
2024-04-29 11:19:01 +00:00
</html>