首页 > 其他 > 详细

[React] React Router: Router, Route, and Link

时间:2016-03-28 02:09:57      阅读:304      评论:0      收藏:0      [点我收藏+]

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;

 

[React] React Router: Router, Route, and Link

原文:http://www.cnblogs.com/Answer1215/p/5327593.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!