yarn
Run npm run dev
.
Check out http://localhost:4001
.
yarn add react react-dom
Add this to index.tsx
:
import * as React from "react";
import * as ReactDOM from "react-dom";
ReactDOM.render(
<div>
Hello from React!
</div>,
document.getElementById("root")
);
Re-run npm run dev
.
Watch the errors.
Also check out the console for http://localhost:4001
.
yarn add --dev @types/react @types/react-dom
Re-run npm run dev
.
Check out http://localhost:4001
.
Enjoy! :)