diff --git a/src/docs/components/PopoverBlocks/Playground.tsx b/src/docs/components/PopoverBlocks/Playground.tsx
index 9391cde..64edbad 100644
--- a/src/docs/components/PopoverBlocks/Playground.tsx
+++ b/src/docs/components/PopoverBlocks/Playground.tsx
@@ -1,12 +1,6 @@
-import {
- GITHUB_COMP_PREVIEW,
- LoadedCode,
- type TEMPLATE,
-} from "@/components/LoadedCode.tsx";
+import type { TEMPLATE } from "@/components/LoadedCode.tsx";
import { usePgProps } from "@/components/PgHooks.tsx";
-import { PlaygroundControl } from "@/components/Playground.tsx";
-import { Story } from "@/components/Story";
-import { TabContent, TabList, TabProvider, TabTrigger } from "@pswui/Tabs";
+import { PlaygroundLayout } from "@/components/Playground.tsx";
import { type ControlledPopoverDemoProps, PopoverDemo } from "./Preview.tsx";
interface TemplateProps extends TEMPLATE, ControlledPopoverDemoProps {}
@@ -53,25 +47,12 @@ export default function PopoverPlayground() {
});
return (
- <>
-
-
- Preview
- Code
-
-
-
-
-
-
-
-
-
-
-
- >
+
+
+
);
}