function PythonMethod()

in website/src/theme/PythonMethod/index.js [12:34]


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

  return (
  <div
    className='doc-method'
    style={{
      backgroundColor: 'DarkSalmon',
      borderRadius: '2px',
      color: '#fff',
      padding: '16px',
      borderRadius: '0.5em',
    }}>

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

    </div>
  </div>
  );
}