diff --git a/src/components/Playground.tsx b/src/components/Playground.tsx index 05603c3..8e9b1a4 100644 --- a/src/components/Playground.tsx +++ b/src/components/Playground.tsx @@ -3,7 +3,10 @@ import { Checkbox } from "@pswui/Checkbox"; import { Input } from "@pswui/Input"; import { Label } from "@pswui/Label"; import { Popover, PopoverContent, PopoverTrigger } from "@pswui/Popover"; +import { TabContent, TabList, TabProvider, TabTrigger } from "@pswui/Tabs"; import type { ReactNode } from "react"; +import { GITHUB_COMP_PREVIEW, LoadedCode, type TEMPLATE } from "./LoadedCode"; +import { Story } from "./Story"; export type Template = Record< string, @@ -119,3 +122,36 @@ export function PlaygroundControl(props: { ); } + +export function PlaygroundLayout({ + children, + compName, + props, + control, +}: { + children: ReactNode; + compName: string; + props: TEMPLATE; + control: T; +}) { + return ( + <> + + + Preview + Code + + + {children} + + + + + + + + ); +}