Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save paulodutra/1227ecba032b2f2b3411e55d6c835a82 to your computer and use it in GitHub Desktop.
Save paulodutra/1227ecba032b2f2b3411e55d6c835a82 to your computer and use it in GitHub Desktop.
exemplo-de-component-home-para-apresentacao-das-animacoes
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