This commit is contained in:
Miguel da Mota 2024-01-14 15:26:14 +01:00
commit 7a265704e8
56 changed files with 8200 additions and 0 deletions

19
src/App.tsx Normal file
View file

@ -0,0 +1,19 @@
import Sidebar from "./components/sidebar";
import { cn } from "./lib/utils";
import { dragging } from "./store";
export default function App() {
return (
<div
className={cn("select-none", {
"cursor-col-resize": dragging.value.isDragging,
})}
>
<div className="grid grid-cols-[max-content,1fr]">
<Sidebar />
</div>
</div>
);
}