diff --git a/src/app/main/example/Example.js b/src/app/main/example/Example.js deleted file mode 100644 index 467517d..0000000 --- a/src/app/main/example/Example.js +++ /dev/null @@ -1,41 +0,0 @@ -import { styled } from '@mui/material/styles'; -import { useTranslation } from 'react-i18next'; -import FusePageSimple from '@fuse/core/FusePageSimple'; -import DemoContent from '@fuse/core/DemoContent'; - -const Root = styled(FusePageSimple)(({ theme }) => ({ - '& .FusePageSimple-header': { - backgroundColor: theme.palette.background.paper, - borderBottomWidth: 1, - borderStyle: 'solid', - borderColor: theme.palette.divider, - }, - '& .FusePageSimple-toolbar': {}, - '& .FusePageSimple-content': {}, - '& .FusePageSimple-sidebarHeader': {}, - '& .FusePageSimple-sidebarContent': {}, -})); - -function ExamplePage(props) { - const { t } = useTranslation('examplePage'); - - return ( - -

{t('TITLE')}

- - } - content={ -
-

Content

-
- -
- } - scroll="content" - /> - ); -} - -export default ExamplePage; diff --git a/src/app/main/example/ExampleConfig.js b/src/app/main/example/ExampleConfig.js deleted file mode 100644 index 522297b..0000000 --- a/src/app/main/example/ExampleConfig.js +++ /dev/null @@ -1,51 +0,0 @@ -import i18next from 'i18next'; - -import en from './i18n/en'; -import tr from './i18n/tr'; -import ar from './i18n/ar'; -import Example from './Example'; - -i18next.addResourceBundle('en', 'examplePage', en); -i18next.addResourceBundle('tr', 'examplePage', tr); -i18next.addResourceBundle('ar', 'examplePage', ar); - -const ExampleConfig = { - settings: { - layout: { - config: {}, - }, - }, - routes: [ - { - path: 'example', - element: , - }, - ], -}; - -export default ExampleConfig; - -/** - * Lazy load Example - */ -/* -import React from 'react'; - -const Example = lazy(() => import('./Example')); - -const ExampleConfig = { - settings: { - layout: { - config: {}, - }, - }, - routes: [ - { - path: 'example', - element: , - }, - ], -}; - -export default ExampleConfig; -*/ diff --git a/src/app/main/example/i18n/en.js b/src/app/main/example/i18n/en.js deleted file mode 100644 index 34bff0c..0000000 --- a/src/app/main/example/i18n/en.js +++ /dev/null @@ -1,5 +0,0 @@ -const locale = { - TITLE: 'Example Page', -}; - -export default locale;