2024-03-23 14:44:05 +05:30
|
|
|
import { SettingsLayout } from "~/components/Layouts/SettingsOptionLayout"
|
|
|
|
|
import OptionLayout from "~/components/Layouts/Layout"
|
|
|
|
|
import { SettingOther } from "~/components/Option/Settings/other"
|
2024-03-03 19:55:43 +05:30
|
|
|
|
2024-05-13 12:44:44 +05:30
|
|
|
const OptionSettings = () => {
|
2024-03-03 19:55:43 +05:30
|
|
|
return (
|
|
|
|
|
<OptionLayout>
|
|
|
|
|
<SettingsLayout>
|
|
|
|
|
<SettingOther />
|
|
|
|
|
</SettingsLayout>
|
|
|
|
|
</OptionLayout>
|
|
|
|
|
)
|
|
|
|
|
}
|
2024-05-13 12:44:44 +05:30
|
|
|
|
|
|
|
|
export default OptionSettings
|