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 OneLeftTwoRight extends React.Component { constructor(props: IPropTypes) { super(props); this.state = {} } render(): React.ReactElement | string | number | {} | React.ReactNodeArray | React.ReactPortal | boolean | null | undefined { let space = this.props.space; let firstHeight = 'calc(100% + ' + space + 'px)'; return ( ); } } export default OneLeftTwoRight;