# Navigating with Link Perhaps the most used component in your app is `Link`. Its almost identical to the `` tag you're used to except that its aware of the `Router` it was rendered in. Lets create some navigation in our `App` component. ```js // modules/App.js import React from 'react' import { Link } from 'react-router' export default React.createClass({ render() { return (