index.tsx
 1  import CodeBlock from '@theme/CodeBlock';
 2  import styles from './styles.module.css';
 3  
 4  export const NotebookCodeCell = ({ children, executionCount }): JSX.Element => (
 5    <div
 6      style={{
 7        flexGrow: 1,
 8        minWidth: 0,
 9        marginTop: 'var(--padding-md)',
10        width: '100%',
11      }}
12    >
13      <CodeBlock className={styles.codeBlock} language="python">
14        {children}
15      </CodeBlock>
16    </div>
17  );