UNPKG

259 BJavaScriptView Raw
1import React from 'react';
2import FooterItem1 from './FooterItem1';
3import FooterItem2 from './FooterItem2';
4
5const Footer = () => (
6 <div className="footer">
7 <ul>
8 <FooterItem1 />
9 <FooterItem2 />
10 </ul>
11 </div>
12);
13
14export default Footer;