25 lines
843 B
HTML
25 lines
843 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no"
|
|
/>
|
|
<meta name="theme-color" content="#000000" />
|
|
<link rel="manifest" href="./manifest.json" />
|
|
<link rel="shortcut icon" href="./favicon.ico" sizes="48x48" />
|
|
<link rel="icon" href="/favicon.ico">
|
|
<link rel="apple-touch-icon" href="/180.png" sizes="180x180">
|
|
<title>React Admin ToDo</title>
|
|
<link rel="stylesheet" href="/estilo.css" />
|
|
<meta name="description" content="A ToDo application implemented with React Admin" />
|
|
</head>
|
|
|
|
<body>
|
|
<noscript> You need to enable JavaScript to run this app. </noscript>
|
|
<div id="root"></div>
|
|
</body>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</html>
|