File size: 264 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 |
import { PropTable } from "@/components/mdx/prop-table"
import { Container } from "@chakra-ui/react"
export default function Page() {
return (
<Container py="20" fontSize="sm">
<p>Props</p>
<PropTable component="badge" />
</Container>
)
}
|