import { Connect } from 'dob-react'; import * as React from 'react'; import { PureComponent } from '../../utils/pure-render'; import { Props, State } from './index.type'; import Article from './article/index.component' @Connect export default class Page1 extends PureComponent { public static defaultProps = new Props(); public state = new State(); public render() { const Articles = this.props.ArticleStore.articles.map((article, index) => { return
}) return (
    {Articles}
); } }