index.tsx
1  export const NotebookHTMLOutput = ({ children }): JSX.Element => (
2    <div style={{ flexGrow: 1, minWidth: 0, fontSize: '0.8rem', width: '100%' }}>{children}</div>
3  );