chore: Refactor route components for better organization and consistency

This commit is contained in:
n4ze3m
2024-05-13 12:44:44 +05:30
parent 79f31460f1
commit e6cf76d270
13 changed files with 123 additions and 36 deletions

View File

@@ -1,10 +1,12 @@
import OptionLayout from "~/components/Layouts/Layout"
import { Playground } from "~/components/Option/Playground/Playground"
export const OptionIndex = () => {
const OptionIndex = () => {
return (
<OptionLayout>
<Playground />
</OptionLayout>
)
}
export default OptionIndex