import React, { memo } from 'react' import { Typography } from '@mui/material' function NoData() { return (
No Data
) } export default memo(NoData)