about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/ui/components/columns_area.js
blob: 05f9f3fb52f5c0ec86cb768d048683eb45497c7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;