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

11 lines
237 B
TypeScript
Raw Normal View History

import OptionLayout from "~components/Layouts/Layout"
import { Playground } from "~components/Option/Playground/Playground"
2024-02-04 13:56:25 +05:30
export const OptionIndex = () => {
return (
<OptionLayout>
<Playground />
</OptionLayout>
2024-02-04 13:56:25 +05:30
)
}