From 4add04ab7ed95a83631765f26a66142272ea8eb4 Mon Sep 17 00:00:00 2001 From: p-sw Date: Fri, 12 Jul 2024 14:10:36 +0900 Subject: [PATCH] feat(playground): apply PlaygroundLayout on Button playground --- .../components/ButtonBlocks/Playground.tsx | 37 +++++-------------- 1 file changed, 9 insertions(+), 28 deletions(-) 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 - - - - - - - - - - - - + + + ); }