interface Props { content?: string; } const Empty = (props: Props) => { return
; }; export default Empty;