1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
function Nav() { return ( <nav> <img src="logo.png" /> <h2>Section</h2> <h4>Subsection</h4> <button>Click me</button> <input placeholder="name" /> <a href="/foo"></a> <label>Name <input /></label> <label>Name <input /></label> </nav> ); } export default Nav;