import * as React from "react"; type MiniNodeProps = { newLine: boolean; }; const MiniNote = ( props: React.PropsWithChildren ): JSX.Element => { const { newLine, children } = props; return ( <> {newLine &&
} {children} ); }; export default MiniNote;