aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.tsx
blob: 6d3a37709a60ae5577157970106ac56489d5d9df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { initialize } from "react-ga";

const TRACKING_ID = "INSERT-YOUR-ID-HERE";
initialize(TRACKING_ID);

import React from "react";
import ReactDOM from "react-dom";
import { ThemeProvider } from "styled-components";
import { theme } from "./constants";
import "./index.css";
import App from "./app";

ReactDOM.render(
  <React.StrictMode>
    <ThemeProvider theme={theme}>
      <App />
    </ThemeProvider>
  </React.StrictMode>,
  document.getElementById("root")
);
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage