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

14 lines
363 B
TypeScript
Raw Normal View History

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"
export const OptionSettings = () => {
return (
<OptionLayout>
<SettingsLayout>
<SettingOther />
</SettingsLayout>
</OptionLayout>
)
}