import {
  Stack,
  TableCell,
  TableRow,
  Typography
} from "@mui/material";
import React from "react";

function DataNotFound() {
  return (
    <TableRow>
      <TableCell align="center" colSpan={15}>
        <Stack justifyContent={"center"} sx={{ height: 200 }}>
          <Typography fontWeight={600}>Data Not Found</Typography>
        </Stack>
      </TableCell>
    </TableRow>
  );
}

export default DataNotFound;
