function PythonModule()

in website/src/theme/PythonModule/index.js [12:35]


function PythonModule({children}) {
  const context = useDocusaurusContext();
  const { siteConfig = {} } = context;

  return (
  <div
    className='doc-module'
    style={{
      backgroundColor: "CornflowerBlue",
      borderRadius: '2px',
      color: '#fff',
      padding: '16px',
      borderRadius: '0.5em',
      marginBottom: '1.0rem',
    }}>

    <div style={{fontSize: '150%'}}>
    
    {children}

    </div>
  </div>
  );
}