function Header(props) { return <h1>{props.text}</h1>; } function Main() { return <Header text={new Date()}/>; } ReactDom.render(<Main />, document.querySelector('#app'))