20 lines
572 B
JavaScript
20 lines
572 B
JavaScript
import cls from "./good.module.scss";
|
|
import Container from "../../Container";
|
|
import TodayTableData from "./components/TodayTableData";
|
|
import GoodRateChart from "./components/GoodRateChart";
|
|
import TechSplitline from "../TechSplitline";
|
|
|
|
const GoodProduction = () => {
|
|
return (
|
|
<Container icon="good" title="本日生产良品率" className={cls.goodProd}>
|
|
<div className={`${cls.goodProd__content} h-full`}>
|
|
<TodayTableData />
|
|
<TechSplitline />
|
|
<GoodRateChart />
|
|
</div>
|
|
</Container>
|
|
);
|
|
};
|
|
|
|
export default GoodProduction;
|