Files
reacord/integration/kitchen-sink.tsx
2021-12-16 10:10:47 -06:00

12 lines
185 B
TypeScript

import React from "react"
import { Embed } from "../src/components.js"
export function KitchenSink() {
return (
<>
content
<Embed color="BLUE"></Embed>
</>
)
}