2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2016-08-24 11:56:44 -04:00
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
class ColumnsArea extends React.PureComponent {
|
2016-08-31 10:15:12 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
|
|
|
children: PropTypes.node
|
|
|
|
};
|
|
|
|
|
2016-08-31 10:15:12 -04:00
|
|
|
render () {
|
2016-08-24 11:56:44 -04:00
|
|
|
return (
|
2017-04-22 22:26:55 -04:00
|
|
|
<div className='columns-area'>
|
2016-09-10 12:36:48 -04:00
|
|
|
{this.props.children}
|
2016-08-24 11:56:44 -04:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-08-31 10:15:12 -04:00
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
|
|
|
|
2016-08-24 11:56:44 -04:00
|
|
|
export default ColumnsArea;
|