This commit is contained in:
LPF
2026-03-12 10:24:40 +08:00
parent e2cea0bce2
commit 679cae2df0
78 changed files with 545 additions and 666 deletions

View File

@@ -2,7 +2,7 @@ import React, { Suspense, lazy } from 'react';
import { BrowserRouter, Routes, Route, Navigate } from 'react-router-dom';
import { AppProvider } from './context/AppContext';
import { UIProvider } from './context/UIContext';
import Layout from './components/Layout';
import Layout from './components/layout/Layout';
const Dashboard = lazy(() => import('./pages/Dashboard'));
const Chat = lazy(() => import('./pages/Chat'));