Auto-commit 2026-04-27 19:13
This commit is contained in:
@@ -18,14 +18,14 @@ import './styles/features.css';
|
||||
import './styles/pricing.css';
|
||||
import './styles/about-faq.css';
|
||||
|
||||
const AppLayout = lazy(() => import('./components/layout/AppLayout'));
|
||||
const Dashboard = lazy(() => import('./components/dashboard/Dashboard'));
|
||||
const KPIDashboard = lazy(() => import('./components/dashboard/KPIDashboard'));
|
||||
const ProjectList = lazy(() => import('./components/projects/ProjectList'));
|
||||
const ProjectDetail = lazy(() => import('./components/projects/ProjectDetail'));
|
||||
const ProjectForm = lazy(() => import('./components/projects/ProjectForm'));
|
||||
const UserProfile = lazy(() => import('./components/auth/UserProfile'));
|
||||
const TeamManagement = lazy(() => import('./components/teams/TeamManagement'));
|
||||
const AppLayout = lazy(() => import('./components/layout/AppLayout').then(m => ({ default: m.AppLayout })));
|
||||
const Dashboard = lazy(() => import('./components/dashboard/Dashboard').then(m => ({ default: m.Dashboard })));
|
||||
const KPIDashboard = lazy(() => import('./components/dashboard/KPIDashboard').then(m => ({ default: m.KPIDashboard })));
|
||||
const ProjectList = lazy(() => import('./components/projects/ProjectList').then(m => ({ default: m.ProjectList })));
|
||||
const ProjectDetail = lazy(() => import('./components/projects/ProjectDetail').then(m => ({ default: m.ProjectDetail })));
|
||||
const ProjectForm = lazy(() => import('./components/projects/ProjectForm').then(m => ({ default: m.ProjectForm })));
|
||||
const UserProfile = lazy(() => import('./components/auth/UserProfile').then(m => ({ default: m.UserProfile })));
|
||||
const TeamManagement = lazy(() => import('./components/teams/TeamManagement').then(m => ({ default: m.TeamManagement })));
|
||||
|
||||
const Redirect = () => <Navigate href="/dashboard" />;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user