I am learning React-JSX and I have tried a code
function sayHello(){
return <h1>Haiiiiii</h1>
}
class App extends Component {
render() {
return (
<div>
<sayHello> Haiiiiii </sayHello>
</div>
);
}
}
Haiiiiii is rendering to screen but the <h1>
heading format is not showing on screen.(ie.,Haiiiiii is not showing in bold font )
tag is supposed to display a text
– Jane Fred Aug 17 '18 at 11:50Haiiiiii {props.children}
) }` – Mayank Shukla Aug 17 '18 at 11:52