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 (
|
2024-02-07 00:11:07 +05:30
|
|
|
<OptionLayout>
|
|
|
|
|
<Playground />
|
|
|
|
|
</OptionLayout>
|
2024-02-04 13:56:25 +05:30
|
|
|
)
|
|
|
|
|
}
|