init
This commit is contained in:
commit
7a265704e8
56 changed files with 8200 additions and 0 deletions
19
src/App.tsx
Normal file
19
src/App.tsx
Normal 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>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue