11 lines
236 B
TypeScript
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>
|
|
)
|
|
}
|