-
-
Save velopert/6cf2d8c583b641888010f0183347d2f8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { Link } from 'react-router'; | |
import './PostLinks.css'; | |
const PostLinks = () => { | |
return ( | |
<div className="post-links"> | |
<Link to="/post/1">1</Link> | |
<Link to="/post/2">2</Link> | |
<Link to="/post/3">3</Link> | |
<Link to="/post/4">4</Link> | |
</div> | |
); | |
}; | |
export default PostLinks; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment