Remove unwanted footer items

Summary: Remove unwanted footer items

Reviewed By: emilsjolander

Differential Revision: D6999348

fbshipit-source-id: e1ff13b8a5a497bfc54e04294994eddef48bbf94
This commit is contained in:
Pritesh Nandgaonkar
2018-02-15 08:03:57 -08:00
committed by Facebook Github Bot
parent 44622912a2
commit 35c6931ade
2 changed files with 10 additions and 11 deletions

View File

@@ -20,18 +20,14 @@ export default class Footer extends Component<{}> {
render() {
return (
<div className="Footer">
<Link to="/" className="logoOSS">
<a href="https://code.facebook.com/projects/" className="logoOSS">
<FacebookOSSLogo />
Facebook Open Source
</Link>
<div className="SocialNetwork">
<a href="https://code.facebook.com/projects/">Open Source</a>
<a href="https://github.com/facebook/">Github</a>
<a href="https://twitter.com/fbOpenSource">Twitter</a>
</div>
<a href="https://github.com/facebook/yoga">
Contribute to this project on Github
</a>
<div className="SocialNetwork">
<a href="https://github.com/facebook/yoga">Github</a>
<a href="https://twitter.com/yogalayout">Twitter</a>
</div>
</div>
);
}