-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathDetails.jsx
More file actions
19 lines (19 loc) · 609 Bytes
/
Details.jsx
File metadata and controls
19 lines (19 loc) · 609 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export default function Details() {
return (
<>
<nav className="nav">
<a href="https://docs.pmnd.rs/zustand">Documentation</a>
<a href="https://github.com/pmndrs/zustand">Github</a>
</nav>
<div className="bottom">
<a href="https://github.com/pmndrs/zustand/tree/main/examples/demo" className="bottom-right">
{'<Source />'}
</a>
<a href="https://www.instagram.com/tina.henschel/" className="bottom-left">
Illustrations @ Tina Henschel
</a>
</div>
<span className="header-left">Zustand</span>
</>
)
}