Skip to content

Instantly share code, notes, and snippets.

@guillaumewuip
Last active November 12, 2020 07:13
Show Gist options
  • Save guillaumewuip/4c9e452c180023a4975fd693ccbbc635 to your computer and use it in GitHub Desktop.
Save guillaumewuip/4c9e452c180023a4975fd693ccbbc635 to your computer and use it in GitHub Desktop.
State and Store in frontend codebase - State example - index
import * as React from "react";
import { render } from "react-dom";
import App from "./App";
import { init } from "./service";
const rootElement = document.getElementById("root");
render(<App />, rootElement);
init();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment