import { Dialog } from "@mui/material"; import GashtCreateContent from "./GashtCreateContent"; import { useState } from "react"; const GashtCreate = ({ open, setOpen, mutate, rowId }) => { const [tabState, setTabState] = useState(0); return ( ); }; export default GashtCreate;