diff --git a/src/components/GlobalFooter/index.js b/src/components/GlobalFooter/index.js index ed66831978af4fa6dcf6a482bfcc2e272e6e3fa9..32b852fad229f1ba3c91422fdbc2c55d107eaf2d 100644 --- a/src/components/GlobalFooter/index.js +++ b/src/components/GlobalFooter/index.js @@ -7,10 +7,19 @@ export default ({ className, links, copyright }) => { return (
{ - links && -
- {links.map(link => {link.title})} -
+ links && ( +
+ {links.map(link => ( + + {link.title} + + ))} +
+ ) } {copyright &&
{copyright}
}