import * as React from 'react'; import {BaseReact} from 'components/@shared/BaseReact'; import WithRoute from 'components/@shared/WithRoute'; import {ROUTES} from 'constant'; import logo from 'assets/img/logo.svg'; import {_} from 'utils/gettext'; import './index.less'; export interface IIndexProps { } export interface IIndexState { } @WithRoute(ROUTES.home) export default class Index extends BaseReact { componentDidMount() { console.log('index') } render() { return (
logo

{_('Welcome to Dubo!')}

) } }