Files
page-assist/src/routes/option-settings-model.tsx

14 lines
345 B
TypeScript
Raw Normal View History

import { SettingsLayout } from "~components/Layouts/SettingsOptionLayout"
import OptionLayout from "~components/Layouts/Layout"
2024-02-18 13:23:47 +05:30
import { ModelsBody } from "~components/Option/Models"
export const OptionModal = () => {
return (
<OptionLayout>
<SettingsLayout>
<ModelsBody />
</SettingsLayout>
</OptionLayout>
)
}