Files
KnowStreaming/km-console/packages/layout-clusters-fe/src/components/RenderEmpty/index.tsx
2022-09-13 14:04:55 +08:00

16 lines
360 B
TypeScript

import React from 'react';
const RenderEmpty = (props: { height?: string | number; message: string }) => {
const { height = 200, message } = props;
return (
<>
<div className="empty-panel" style={{ height }}>
<div className="img" />
<div className="text">{message}</div>
</div>
</>
);
};
export default RenderEmpty;