home.js 451 Bytes
Newer Older
Wee committed
1 2
import React from 'react'
import { Link } from 'react-router-dom'
Wee committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18

const Home = props => {
  return (
    <div>
      <a
        className="detailContent"
        href="https://github.com/fi3ework/react-live-route"
        target="_blank"
        rel="noopener noreferrer"
      >
        <h1>react-live-route</h1>
      </a>
      <Link to="/items">
        <div className="entry">into items</div>
      </Link>
    </div>
Wee committed
19 20
  )
}
Wee committed
21

Wee committed
22
export default Home