Comment out links w/o href II

This commit is contained in:
Rachel Ruderman 2020-07-03 01:06:58 -07:00
parent 4fed8511e5
commit 6e1bd7671a
1 changed files with 4 additions and 1 deletions

View File

@ -67,13 +67,16 @@ var Footer = function Footer() {
var links = [
{
text: "Made with ❤️ by Ian Ramzy",
href: "https://ianramzy.com",
},
];
return React.createElement(
"nav",
{ className: "footer-nav" },
React.createElement(
"ul",
{ className: "list-reset" },
React.createElement(
links.map(function (_ref) {
var href = _ref.href,
text = _ref.text;