Created
December 5, 2019 18:04
-
-
Save paulodutra/1227ecba032b2f2b3411e55d6c835a82 to your computer and use it in GitHub Desktop.
exemplo-de-component-home-para-apresentacao-das-animacoes
This file contains hidden or 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-dom'; | |
const Home = () => { | |
return ( | |
<div> | |
<h1>Animações do Adobe After Effects no React JS</h1> | |
<ul> | |
<li> | |
<Link to="/404">Error 404 Not Found</Link> | |
</li> | |
<li> | |
<Link to="/500">Error 500 Internal Server Error </Link> | |
</li> | |
</ul> | |
</div> | |
) | |
} | |
export default Home; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment