index.js 271 B

123456789
  1. import React from 'react';
  2. import './index.less';
  3. function Division(props) {
  4. const { children, two, three } = props;
  5. return <div className={`division ${two ? 'two' : ''} ${three ? 'three' : ''}`}>{children}</div>;
  6. }
  7. Division.propTypes = {};
  8. export default Division;