Menu.jsx 352 B

123456789101112131415161718192021
  1. import React, { Component } from "react";
  2. import { IndexLink, Link } from "react-router";
  3. export default class Menu extends Component {
  4. render() {
  5. return (
  6. <div className="Menu">
  7. <IndexLink to="home">
  8. Home
  9. </IndexLink>
  10. <Link to="template">
  11. Template
  12. </Link>
  13. <Link to="404">
  14. 404
  15. </Link>
  16. </div>
  17. );
  18. }
  19. }