aboutsummaryrefslogtreecommitdiffstats
path: root/apps/landing/src/main.tsx
blob: ed52e896910806d53c3bf235d2ea6d94eeee7782 (plain) (blame)
1
2
3
4
5
6
7
8
9
import { StrictMode } from "react";
import App from "@/src/App";
import { createRoot } from "react-dom/client";

createRoot(document.getElementById("root")!).render(
  <StrictMode>
    <App />
  </StrictMode>,
);