index.js 579 B

123456789101112131415161718192021
  1. import React from 'react'
  2. import './index.css'
  3. import {Switch, Route} from 'react-router-dom'
  4. import All from './all'
  5. import Kind from './kind'
  6. import Detail from './detail'
  7. const Home = () => (
  8. <div style={{height: '100%'}}>
  9. <Switch>
  10. <Route exact path="/" component={All}/>
  11. <Route exact path="/home" component={All}/>
  12. <Route path="/home/all" component={All}/>
  13. <Route path="/home/kind" component={Kind}/>
  14. <Route path="/home/detail" component={Detail}/>
  15. </Switch>
  16. </div>
  17. )
  18. export default Home