19
resources/client/admin/settings/app-settings-routes.tsx
Executable file
19
resources/client/admin/settings/app-settings-routes.tsx
Executable file
@@ -0,0 +1,19 @@
|
||||
import {RouteObject} from 'react-router-dom';
|
||||
import {VideoSettings} from '@app/admin/settings/video-settings';
|
||||
import {ContentSettings} from '@app/admin/settings/content-settings/content-settings';
|
||||
import {SearchSettings} from '@common/admin/settings/pages/search-settings/search-settings';
|
||||
|
||||
export const AppSettingsRoutes: RouteObject[] = [
|
||||
{
|
||||
path: 'search',
|
||||
element: <SearchSettings />,
|
||||
},
|
||||
{
|
||||
path: 'videos',
|
||||
element: <VideoSettings />,
|
||||
},
|
||||
{
|
||||
path: 'content',
|
||||
element: <ContentSettings />,
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user