Q:

functional components

const component = () => {
console.log("This is a functional Component");
}
6
function Welcome(props) {  return <h1>Hello, {props.name}</h1>;
}

const element = <Welcome name="Sara" />;ReactDOM.render(
  element,
  document.getElementById('root')
);
1

New to Communities?

Join the community