From 737344a72d23dc97b0d0e73cc4ab7fdffd0fbf49 Mon Sep 17 00:00:00 2001 From: Brendan F Date: Sun, 14 May 2023 23:12:27 -0700 Subject: Merge in react app code From sluchajfun and youtube-heardle-template --- src/index.tsx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/index.tsx (limited to 'src/index.tsx') diff --git a/src/index.tsx b/src/index.tsx new file mode 100644 index 0000000..6d3a377 --- /dev/null +++ b/src/index.tsx @@ -0,0 +1,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( + + + + + , + document.getElementById("root") +); -- cgit v1.2.3