interface Props {}
const LineBreak: React.FC<Props> = () => {
return <br />;
};
export default LineBreak;