### componentName Explain briefly what the snippet does. Explain briefly how the snippet works. ```jsx function componentName(props) { return
{props}
; }; ``` ```jsx class componentName extends React.Component { constructor(props){} render(){ return
{props}
; } } ```