Column.tsx 362 B

1234567891011121314151617
  1. import React from 'react';
  2. import ColumnShape from './ColumnShape';
  3. import { ColumnProps } from './interface';
  4. export default class Column extends React.PureComponent<ColumnProps> {
  5. static propTypes = {
  6. ...ColumnShape,
  7. };
  8. constructor(props: ColumnProps = {}) {
  9. super(props);
  10. }
  11. render(): null {
  12. return null;
  13. }
  14. }