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