You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
class ColumnsArea extends React.PureComponent {
|
|
|
|
render () {
|
|
return (
|
|
<div className='columns-area'>
|
|
{this.props.children}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
ColumnsArea.propTypes = {
|
|
children: PropTypes.node
|
|
};
|
|
|
|
export default ColumnsArea;
|