import React, { Component } from 'react'; import { config } from './base/config'; import s from './Column.less'; import { ColumnProps } from './interface'; export default class TableColumn extends Component { constructor(props: ColumnProps) { super(props); } render() { let { type, title, width=200 } = this.props; let icon = config[String(type)] && config[String(type)].icon; return (
{title}
); } }