17 lines
444 B
TypeScript
Raw Normal View History

2026-01-08 16:35:06 +08:00
// import MyModalsMapLeaflet from '@/components/ModalsMapLeaflet';
2026-02-04 12:32:17 +08:00
import LayoutLeft from './components/LayoutLeft';
import LayoutRight from './components/LayoutRight';
2026-01-08 16:35:06 +08:00
import './style.scss';
export default function Index() {
2026-02-04 12:32:17 +08:00
return (
<div className="overview_content">
<div className="overview_left">
<LayoutLeft />
</div>
<div className="overview_right">
<LayoutRight />
</div>
</div>
);
2026-01-08 16:35:06 +08:00
}