/** * @author oldj * @blog https://oldj.net */ 'use strict' import React from 'react' import classnames from 'classnames' import Editor from './editor' import './content.less' export default class Content extends React.Component { constructor (props) { super(props) this.state = { is_loading: this.props.current.is_loading } } render () { let {current, lang} = this.props return (
loading...
{this.props.current.error}
) } }