import React, {useState} from "react"; import intl from "react-intl-universal"; import '../../../lanhuapp/common.css'; import "../../../lanhuapp/index.css"; import {StyledToggleButton} from "../../Component/StyledTable"; import {ToggleButtonGroup} from "@mui/material"; import TabPanel from "../../Component/TabPanel"; import QualityRightTable from "../../Component/QualityRightTable"; function RightDownLeftQ() { const [time, setTime] = useState(1); const handleAlignment = (event: React.MouseEvent, newTime: number | null,) => { if (newTime !== null) { setTime(newTime); clearTimeout(timeout) } }; const timeout = setTimeout(() => { if (time < 3) { setTime(time + 1) } else { setTime(1) } }, 5000) return (
{intl.get('DefectSummaryLine3')} {intl.get('ThisDayShort')} {intl.get('ThisWeekShort')} {intl.get('ThisMonthShort')}
) } export default RightDownLeftQ;