how to create comonent using const code example
Example 1: functional component react
function Welcome(props) {
return Hello, {props.name}
;
}
function App() {
return (
);
}
ReactDOM.render(
,
document.getElementById('root')
);
Example 2: create-react-app class component
npx create-react-app my-app --scripts-version [email protected]