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