33 lines
787 B
HTML
33 lines
787 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<link
|
||
|
rel="icon"
|
||
|
type="image/png"
|
||
|
sizes="32x32"
|
||
|
href="./assets/favicon-32x32.png"
|
||
|
/>
|
||
|
<title>Frontend Mentor | Contact form</title>
|
||
|
<link rel="stylesheet" href="styles.css" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="root"></div>
|
||
|
<script type="module">
|
||
|
import React from "react";
|
||
|
import { createRoot } from "react-dom/client";
|
||
|
|
||
|
import App from "./src/app.jsx";
|
||
|
|
||
|
createRoot(document.getElementById("root")).render(
|
||
|
React.createElement(
|
||
|
React.StrictMode,
|
||
|
null,
|
||
|
React.createElement(App, null),
|
||
|
),
|
||
|
);
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|