Skip to content

Instantly share code, notes, and snippets.

@lomse
Created August 27, 2019 19:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lomse/7c83d252d1dc896896ffec467ec31e9a to your computer and use it in GitHub Desktop.
Save lomse/7c83d252d1dc896896ffec467ec31e9a to your computer and use it in GitHub Desktop.
Index.tsx for todos app with react hooks, typescript and redux
import * as React from "react";
import { render } from "react-dom";
import App from "./components/App";
render(
<App />,
document.getElementById("root"),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment