You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
overseerr/src/pages/settings/main.tsx

15 lines
361 B

import React from 'react';
import { NextPage } from 'next';
import SettingsLayout from '../../components/Settings/SettingsLayout';
import SettingsMain from '../../components/Settings/SettingsMain';
const SettingsMainPage: NextPage = () => {
return (
<SettingsLayout>
<SettingsMain />
</SettingsLayout>
);
};
export default SettingsMainPage;