13 lines
262 B
TypeScript
13 lines
262 B
TypeScript
import OptionLayout from "~/components/Layouts/Layout"
|
|
import { Playground } from "~/components/Option/Playground/Playground"
|
|
|
|
const OptionIndex = () => {
|
|
return (
|
|
<OptionLayout>
|
|
<Playground />
|
|
</OptionLayout>
|
|
)
|
|
}
|
|
|
|
export default OptionIndex
|