function App() {
const student = 'John';
return (
<>
<h1 className='h1'>{`Hello ${student}`}</h1>
<h2>Hola</h2>
<span>{student}</span>
<ul>
{
students.map(student => <li>{student}</li>)
}
</ul>
<div
style={{
width: '200px',
height: '200px',
backgroundColor: 'red'
}}
>
</div>
</>
)
}