zoukankan      html  css  js  c++  java
  • [React] React Router: Router, Route, and Link

    In this lesson we'll take our first look at the most common components available to us in react-router; Router, Route, and Link.

    import React from 'react';
    import {hashHistory, Route, Router, Link} from 'react-router';
    
    const Home = () => <div><h1>Home</h1><Links></Links></div>;
    const About = () => <div><h1>About</h1><Links></Links></div>;
    const Contact = () => <div><h1>Contact</h1><Links></Links></div>;
    
    
    const Links = () =>
        <nav >
            <Link to="/">Home</Link>
            <Link to="/about">About</Link>
            <Link to="/contact">Contact</Link>
        </nav>;
    
    class App extends React.Component {
        render(){
            return(
                <Router history={hashHistory}>
                    <Route path="/" component={Home}></Route>
                    <Route path="/about" component={About}></Route>
                    <Route path="/contact" component={Contact}></Route>
                </Router>
            );
        }
    }
    
    export default App;
  • 相关阅读:
    自己写库—构建库函数雏形
    暑假第二周计划
    初学Oracle
    暑假第一周计划
    读书笔记六
    读书笔记五
    读书笔记四
    读书笔记三
    读书笔记
    系统目标文档
  • 原文地址:https://www.cnblogs.com/Answer1215/p/5327593.html
Copyright © 2011-2022 走看看