diff --git a/src/docs/components/ButtonBlocks/Playground.tsx b/src/docs/components/ButtonBlocks/Playground.tsx index 93bf0b0..241ca29 100644 --- a/src/docs/components/ButtonBlocks/Playground.tsx +++ b/src/docs/components/ButtonBlocks/Playground.tsx @@ -1,12 +1,6 @@ -import { - GITHUB_COMP_PREVIEW, - LoadedCode, - type TEMPLATE, -} from "@/components/LoadedCode"; +import type { TEMPLATE } from "@/components/LoadedCode"; import { usePgProps } from "@/components/PgHooks"; -import { PlaygroundControl } from "@/components/Playground"; -import { Story } from "@/components/Story"; -import { TabContent, TabList, TabProvider, TabTrigger } from "@pswui/Tabs"; +import { PlaygroundLayout } from "@/components/Playground"; import { ButtonDemo, type ControlledButtonDemoProps } from "./Preview"; interface TemplateProps extends TEMPLATE, ControlledButtonDemoProps {} @@ -59,25 +53,12 @@ export default function ButtonPlayground() { }); return ( - <> - - - Preview - Code - - - - - - - - - - - - + + + ); }