import React from "react"; import ReactDOM from "react-dom/client"; import { ThemeProvider } from "styled-components"; import { theme } from "./constants"; import "./index.css"; import App from "./app"; const root = ReactDOM.createRoot( document.getElementById("root") as HTMLElement ); root.render( , );