import React from 'react'
import {connect} from 'umi'
const Index = () => {
return (
<div>index</div>
)
}
export default connect(() => ({}))(Index);