diff --git a/playground/counter.tsx b/playground/counter.tsx index 1f642c0..1925c19 100644 --- a/playground/counter.tsx +++ b/playground/counter.tsx @@ -1,12 +1,36 @@ import * as React from "react" -import { Button } from "../src.new/components/button.js" +import { Button } from "../src.new/button.js" +import { Embed } from "../src.new/embed.js" export function Counter() { const [count, setCount] = React.useState(0) + const [embedVisible, setEmbedVisible] = React.useState(false) + return ( <> this button was clicked {count} times -