25 lines
509 B
HTML
25 lines
509 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
|
|
charset="UTF-8"
|
|
>
|
|
<link
|
|
rel="stylesheet"
|
|
href="/node_modules/bootstrap/dist/css/bootstrap.min.css"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="/src/renderer/styles/style.css"
|
|
/>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="App"></div>
|
|
</body>
|
|
<script src="/src/renderer/index.jsx" type="module">
|
|
</script>
|
|
</html>
|