Skip to content
Snippets Groups Projects
Select Git revision
  • 4a8912686ace5f5110e46ed19f21668e79059f8f
  • master default protected
2 results

xlsx2schema-base.ipynb

Blame
  • CollapsibleSection.js 498 B
    import { compose } from 'redux';
    import { withTranslation } from 'react-i18next';
    import { withStyles } from '@material-ui/core/styles';
    import { CollapsibleSection } from '../components/CollapsibleSection';
    
    const styles = {
      button: {
        padding: 0,
      },
      container: {
        display: 'flex',
        justifyContent: 'space-between',
      },
      heading: {
        cursor: 'pointer',
      },
    };
    
    const enhance = compose(
      withTranslation(),
      withStyles(styles),
    );
    
    export default enhance(CollapsibleSection);