-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·28 lines (22 loc) · 836 Bytes
/
Copy pathindex.html
File metadata and controls
executable file
·28 lines (22 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>meucontroledevendas.net</title>
<link href="/favicon.png" rel="icon" type="image/png" />
</head>
<body class="font-inter antialiased bg-slate-100 text-slate-600">
<script>
if (localStorage.getItem("sidebar-expanded") == "true") {
document.querySelector("body").classList.add("sidebar-expanded");
} else {
document.querySelector("body").classList.remove("sidebar-expanded");
}
</script>
<div id="root"></div>
<!--// O código JS pode ser incluído em uma tag < script > ou um arquivo JS separado. -->
<script type="module" src="/src/main.jsx"></script>
<!-- Desenvolvedor: https://github.com/luizdeveloperbr | Ano: 2022 -->
</body>
</html>