This functional component is going to display a greeting for a variable name. I don not understand props as well as I would like so this is not working.
const Welcome = (props) => <h1>Hello, {props.user}</h1>;
<Welcome user="Constance the Badger" />;
ReactDOM.render(<Wellcome />, document.getElementById("root"));