Carl Bolduc

Results 1 issues of Carl Bolduc

With the following code: ``` import React from "react"; import OtherComponent from "./OtherComponent"; const MainComponent = props => { return ( {props.item.date} {props.item.description} props.doStuff()} /> ); }; export default MainComponent;...