UNPKG

generator-wallaby-webpack-react

Version:

Yeoman generator for wallabyjs, webpack, react, hot reloading, jest and babel.

14 lines (10 loc) 256 B
import React from 'react'; const ExampleComponent = ({ children }) => ( <div className="label"> {children || 'No label'} </div> ); ExampleComponent.propTypes = { children: React.PropTypes.string.isRequired, }; export default ExampleComponent;