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.
21 lines
320 B
21 lines
320 B
8 years ago
|
import React from 'react';
|
||
8 years ago
|
import PropTypes from 'prop-types';
|
||
8 years ago
|
|
||
8 years ago
|
class ColumnsArea extends React.PureComponent {
|
||
8 years ago
|
|
||
|
render () {
|
||
8 years ago
|
return (
|
||
8 years ago
|
<div className='columns-area'>
|
||
8 years ago
|
{this.props.children}
|
||
8 years ago
|
</div>
|
||
|
);
|
||
|
}
|
||
8 years ago
|
|
||
8 years ago
|
}
|
||
|
|
||
|
ColumnsArea.propTypes = {
|
||
|
children: PropTypes.node
|
||
|
};
|
||
8 years ago
|
|
||
|
export default ColumnsArea;
|