2024-03-03 19:55:43 +05:30
|
|
|
import { SettingsLayout } from "~components/Layouts/SettingsOptionLayout"
|
2024-02-17 00:01:07 +05:30
|
|
|
import OptionLayout from "~components/Option/Layout"
|
2024-02-18 13:23:47 +05:30
|
|
|
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>
|
|
|
|
|
)
|
|
|
|
|
}
|