const element = React.createElement( 'div', {id: 'login-btn'}, 'Login' )The above code returns a JSON object containing type and props and it is then rendered by ReactDOM.render();
const Button = ({ onLogin }) => <div id={'login-btn'} onClick={onLogin}>Login</div>