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

11 lines
239 B
TypeScript
Raw Normal View History

2024-03-23 14:44:05 +05:30
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
)
}