import React from 'react'; import { withNamespaces, WithNamespaces } from 'react-i18next'; import HeaderDetails from 'components/HeaderDetails'; import Intro from './Intro'; import Requests from './Requests'; import Guide from './Guide'; import Actions from './Actions'; import Latest from './Latest'; import './style.less'; class Home extends React.Component { render() { const { t } = this.props; return (
); } } export default withNamespaces()(Home);