Files
xuchang-new/src/components/Modules/Home/CenterTop/index.jsx
2024-04-16 10:28:14 +08:00

22 lines
455 B
JavaScript

import React from 'react';
import Item2 from './RightTable';
// import Item1 from '../../../Common/TimeFireDir';
import Item1 from '../../../Common/VideoMonitor';
import cls from './index.module.scss';
export default function index() {
return (
<>
<div className="flex justify-between w-full h-full">
<div className={cls.leftGrid}>
<Item1 />
</div>
<div className={cls.rightTable}>
<Item2 />
</div>
</div>
</>
);
}