Add React and React DOM
Adding React and React DOM
yarn add react react-dom
# Add the community provided types for these libraries
# (For typescript users only)
yarn add -D @types/react @types/react-domimport * as React from "react";
import { render } from "react-dom";
const concept = "world";
const App = () => {
return <div>Hello {concept}</div>;
};
render(<App />, document.getElementById("root"));
Our React app is ready.
Last updated