14 lines
359 B
TypeScript
14 lines
359 B
TypeScript
|
|
import { SettingsLayout } from "~components/Layouts/SettingsOptionLayout"
|
||
|
|
import OptionLayout from "~components/Option/Layout"
|
||
|
|
import { SettingOther } from "~components/Option/Settings/other"
|
||
|
|
|
||
|
|
export const OptionSettings = () => {
|
||
|
|
return (
|
||
|
|
<OptionLayout>
|
||
|
|
<SettingsLayout>
|
||
|
|
<SettingOther />
|
||
|
|
</SettingsLayout>
|
||
|
|
</OptionLayout>
|
||
|
|
)
|
||
|
|
}
|