Added side Pannel

This commit is contained in:
PxlLoewe
2025-03-25 00:19:08 -07:00
parent c956fb253b
commit 6b09e3380e
9 changed files with 81 additions and 15 deletions

View File

@@ -0,0 +1,15 @@
import { usePannelStore } from "_store/pannelStore";
export const OpenButton = () => {
const { setOpen } = usePannelStore();
return (
<button
onClick={() => {
setOpen(true);
}}
className="btn absolute inset-y-0 right-0 z-9999"
>
Open
</button>
);
};