about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/ui/components/columns_area.js
blob: 588db3abd5c5f08bba79bd89bd489f66d9ab13c3 (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 {

  static propTypes = {
    children: PropTypes.node
  };

  render () {
    return (
      <div className='columns-area'>
        {this.props.children}
      </div>
    );
  }

}

export default ColumnsArea;