From cfc9cd8c7770ddc8f151610acd177e54169e28d7 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Fri, 5 Jun 2026 22:08:51 -0700 Subject: feat: historical stats tracking, chart --- src/index.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/index.tsx') diff --git a/src/index.tsx b/src/index.tsx index e1b6a22..c4a2bfc 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1,15 +1,18 @@ import React from "react"; -import ReactDOM from "react-dom"; +import ReactDOM from "react-dom/client"; import { ThemeProvider } from "styled-components"; import { theme } from "./constants"; import "./index.css"; import App from "./app"; -ReactDOM.render( +const root = ReactDOM.createRoot( + document.getElementById("root") as HTMLElement +); + +root.render( , - document.getElementById("root") ); -- cgit v1.2.3