mirror of
https://github.com/pmndrs/zustand.git
synced 2025-12-08 19:45:52 +00:00
* chore: enhance prettier config * chore: fix prettier issues * Update package.json --------- Co-authored-by: Daishi Kato <dai-shi@users.noreply.github.com>
23 lines
726 B
HTML
23 lines
726 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="theme-color" content="#000000" />
|
|
<meta
|
|
name="description"
|
|
content="🐻 Bear necessities for state management in React"
|
|
/>
|
|
<link rel="apple-touch-icon" href="/logo192.png" />
|
|
<meta name="og:image" content="/ogimage.jpg" />
|
|
<link rel="manifest" href="/manifest.json" />
|
|
<title>Zustand</title>
|
|
</head>
|
|
<body>
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|