123456789 |
- import React from 'react';
- import './index.less';
- function Division(props) {
- const { children, two, three } = props;
- return <div className={`division ${two ? 'two' : ''} ${three ? 'three' : ''}`}>{children}</div>;
- }
- Division.propTypes = {};
- export default Division;
|