import React from 'react'; import { Message } from 'semantic-ui-react'; type Props = { title: React.ReactNode children?: React.ReactNode }; export const JoyWarn = ({ title, children }: Props) => ( {title} {children &&
{children}
}
);