2024-03-23 14:44:05 +05:30
|
|
|
import { SettingsLayout } from "~/components/Layouts/SettingsOptionLayout"
|
|
|
|
|
import OptionLayout from "~/components/Layouts/Layout"
|
|
|
|
|
import { ModelsBody } from "~/components/Option/Models"
|
2024-02-17 00:01:07 +05:30
|
|
|
|
|
|
|
|
export const OptionModal = () => {
|
|
|
|
|
return (
|
|
|
|
|
<OptionLayout>
|
2024-03-03 19:55:43 +05:30
|
|
|
<SettingsLayout>
|
|
|
|
|
<ModelsBody />
|
|
|
|
|
</SettingsLayout>
|
2024-02-17 00:01:07 +05:30
|
|
|
</OptionLayout>
|
|
|
|
|
)
|
|
|
|
|
}
|