diff --git a/src/components/AppContainer/index.tsx b/src/components/AppContainer/index.tsx index 54e46da98..deba4d948 100644 --- a/src/components/AppContainer/index.tsx +++ b/src/components/AppContainer/index.tsx @@ -5,7 +5,7 @@ import { AppProviders } from '../App/Providers' import { AuthGuard } from '../Auth' const LazyApp = lazy(() => import('../App').then(({ App }) => ({ default: App }))) -const LazyMindSet = lazy(() => import('../../modules').then(({ MindSet }) => ({ default: MindSet }))) +const LazyMindSet = lazy(() => import('../../modules/mindset').then(({ MindSet }) => ({ default: MindSet }))) export const AppContainer = () => { const App = diff --git a/src/modules/components/header/index.tsx b/src/modules/mindset/components/header/index.tsx similarity index 100% rename from src/modules/components/header/index.tsx rename to src/modules/mindset/components/header/index.tsx diff --git a/src/modules/index.tsx b/src/modules/mindset/index.tsx similarity index 100% rename from src/modules/index.tsx rename to src/modules/mindset/index.tsx