import * as React from 'react' import {Props, State} from './type' export class GoodsList extends React.Component { public static defaultProps = new Props() public state = new State() public render() { return
{this.props.title}
} }