Use HTML entity instead of a unicode character

Some editors are unhappy using unicode in a file.  Let's use the HTML entity instead.
This commit is contained in:
Shawn Wilsher 2017-07-12 08:55:03 -07:00 committed by GitHub
parent e3139eea2f
commit 4c93e4ac33

View file

@ -111,7 +111,7 @@ class Footer extends React.Component {
/>
</a>
<section className="copyright">
Copyright © {currentYear} Facebook Inc.
Copyright &copy; {currentYear} Facebook Inc.
</section>
</footer>
);