Files
page-assist/src/routes/option-index.tsx
2024-02-17 00:01:07 +05:30

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>
)
}