=
function Goal(props) {
const isGoal = props.isGoal;
if (isGoal) {
return <MadeGoal/>;
}
return <MissedGoal/>;
}
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<Goal isGoal={false} />);
=
How we can listen to som eevents some envents fire like click or automatically user enters into input button , that is event on word type i...
No comments:
Post a Comment