const NoData = ({ height }: NoDataProps) => { return (
No Data
); }; interface NoDataProps { height: number; } export default NoData;