Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| import React from 'react'; | |
| import { Link } from 'react-router-dom'; | |
| import '../styles/about-page.css'; | |
| // Since this component is simple and static, there's no parent container for it. | |
| const AboutPage = () => { | |
| return ( | |
| <div> | |
| <h2 className="alt-header">About</h2> | |
| <p> | |
| This example app is part of the <a href="https://github.com/coryhouse/react-slingshot">React-Slingshot | |
| starter kit</a>. | |
| </p> | |
| <p> | |
| <Link to="/badlink">Click this bad link</Link> to see the 404 page. | |
| </p> | |
| </div> | |
| ); | |
| }; | |
| export default AboutPage; |