import { Box, Tab, Tabs } from "@mui/material"; import { BackButton } from "../components/back-button/BackButton"; import { Grid } from "../components/grid/Grid"; import { SPACING } from "../data/spacing"; import { SLaughterPaymentOverview } from "../features/slaughter-house/components/slaughter-payment-overview/SLaughterPaymentOverview"; import { useState } from "react"; import { TabContext, TabPanel } from "@mui/lab"; import { SlaughterPaymentByWeight } from "../features/slaughter-house/components/slaughter-payment-by-weight/SlaughterPaymentByWeight"; import { SlaughterPayingFees } from "../features/slaughter-house/components/slaughter-paying-fees/SlaughterPayingFees"; const PaymentOfFees = () => { const [tabValue, setTabValue] = useState("1"); const handleTabChange = (event, newValue) => { setTabValue(newValue); }; return ( <> ); }; export default PaymentOfFees;