index.tsx 326 Bytes
Newer Older
Yoon, Daeki's avatar
Yoon, Daeki committed
1
import React from "react";
2
import "tailwindcss/tailwind.css";
Yoon, Daeki's avatar
Yoon, Daeki committed
3
import { createRoot } from "react-dom/client";
4
import { SurveyRouter } from "./SurveyRouter";
Yoon, Daeki's avatar
Yoon, Daeki committed
5
6
7
8
9
10

const container = document.getElementById("root");
const root = createRoot(container!);

root.render(
  <React.StrictMode>
11
    <SurveyRouter />
Yoon, Daeki's avatar
Yoon, Daeki committed
12
13
  </React.StrictMode>
);