import React from 'react'; const FooterItem = ({text}) => { return (
  • {text}
  • ); }; export default FooterItem;