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