import React from 'react'; import ColumnShape from './ColumnShape'; import { ColumnProps } from './interface'; export default class Column extends React.PureComponent { static propTypes = { ...ColumnShape, }; constructor(props: ColumnProps = {}) { super(props); } render(): null { return null; } }