### 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}
; } } ``` ```jsx ReactDOM.render(, mountNode); ``` #### Notes: * Things to remember when using this * Other options that might be less appealing or have lower compatibility * Common mistakes and issues