chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
import {
|
||||
ResizableHandle,
|
||||
ResizablePanel,
|
||||
ResizablePanelGroup,
|
||||
} from "~/components/primitives/Resizable";
|
||||
|
||||
export default function Story() {
|
||||
return (
|
||||
<div className="h-full">
|
||||
<ResizablePanelGroup>
|
||||
<ResizablePanel id={"1-left"} className="bg-sky-500" />
|
||||
<ResizableHandle id="1-split" />
|
||||
<ResizablePanel
|
||||
id={"1-right"}
|
||||
default="100px"
|
||||
min="100px"
|
||||
max="600px"
|
||||
className="bg-teal-500"
|
||||
isStaticAtRest
|
||||
/>
|
||||
</ResizablePanelGroup>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user