type MessageProps = { children?: React.ReactNode; type: 'error' | 'loading' | 'no-data'; }; export default function Message({ children, type }: MessageProps): React.ReactElement { return
{children}
; }