page-assist/src/routes/option-index.tsx

11 lines
236 B
TypeScript

import OptionLayout from "~components/Option/Layout"
import { Playground } from "~components/Option/Playground/Playground"
export const OptionIndex = () => {
return (
<OptionLayout>
<Playground />
</OptionLayout>
)
}