import React from "react";
class Alumno extends React.Component {
constructor(props) {
super(props);
this.state={nota:"Por determinar"}
}
render() {
return (
<div>
<h1>{this.props.nombre}</h1>
<h2>{this.state.nota}</h2>
</div>
);
}
}
export default function App() {
return (
<div>
<Alumno nombre="Ana"/>
<Alumno nombre="Eva"/>
</div>
);
}