UNPKG

cucumber-protractor

Version:

POM CukeTractor - Bootstrap your cucumber tests with cucumber, protractor and a structured way of creating page objects and component objects

15 lines (12 loc) 259 B
import React from 'react'; import FooterItem1 from './FooterItem1'; import FooterItem2 from './FooterItem2'; const Footer = () => ( <div className="footer"> <ul> <FooterItem1 /> <FooterItem2 /> </ul> </div> ); export default Footer;