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