import * as React from "react"; import './index.less' import Magic from '../commen/magic' type ImgList = { link: string, picurl: string } export interface IPropTypes { pageSpace: number space: number, imgList: Array } class ThreeItem extends React.Component { constructor(props: IPropTypes) { super(props); this.state = {} } render(): React.ReactElement | string | number | {} | React.ReactNodeArray | React.ReactPortal | boolean | null | undefined { return ( ); } } export default ThreeItem;