bigbuffet-rw/app/gabsocial/components/column.js
2020-03-27 15:59:38 -05:00

21 lines
393 B
JavaScript

import React from 'react';
import PropTypes from 'prop-types';
export default class Column extends React.PureComponent {
static propTypes = {
children: PropTypes.node,
label: PropTypes.string,
};
render () {
const { label, children } = this.props;
return (
<div role='region' aria-label={label} className='column'>
{children}
</div>
);
}
}