新项目, antd6, react19

This commit is contained in:
zhengw
2026-01-05 17:06:16 +08:00
commit fcb43c0cbd
84 changed files with 6939 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import Outlet from '@/router/Outlet';
import ErrorBoundary from './ErrorBoundary';
const EmptyLayout = () => {
return (
<ErrorBoundary>
<Outlet />
</ErrorBoundary>
);
};
export default EmptyLayout;