Created
August 27, 2019 19:23
-
-
Save lomse/7c83d252d1dc896896ffec467ec31e9a to your computer and use it in GitHub Desktop.
Index.tsx for todos app with react hooks, typescript and redux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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