2025-06-09 08:41:52 +09:00

26 lines
668 B
JavaScript

export default function Details() {
return (
<>
<nav className="nav">
<a href="https://zustand.docs.pmnd.rs/">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>
</>
)
}