import * as React from 'react'; import GoodsAdd from './GoodsAdd'; interface IProps { onClose: () => void; onSuccess?: () => void; type:number } export default class CreateGoods extends React.Component { constructor(props: any) { super(props); this.state = { }; } render() { return (
); } }