21 lines
558 B
TypeScript
21 lines
558 B
TypeScript
|
|
// import MyModalsMapLeaflet from '@/components/ModalsMapLeaflet';
|
||
|
|
import CardCenter from './components/CardCenter';
|
||
|
|
import CardLeft from './components/CardLeft';
|
||
|
|
import CardRight from './components/CardRight';
|
||
|
|
import './style.scss';
|
||
|
|
export default function Index() {
|
||
|
|
return (
|
||
|
|
<div className="overview_content">
|
||
|
|
<div className="overview_left">
|
||
|
|
<CardLeft />
|
||
|
|
</div>
|
||
|
|
<div className="overview_center">
|
||
|
|
<CardCenter />
|
||
|
|
</div>
|
||
|
|
<div className="overview_right">
|
||
|
|
<CardRight />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|