mirror of
https://github.com/ramvignesh-b/pi-ku.git
synced 2026-05-04 08:56:52 +00:00
17 lines
439 B
TypeScript
17 lines
439 B
TypeScript
import { StrictMode } from "react";
|
|
import { createRoot } from "react-dom/client";
|
|
import "./index.css";
|
|
import "@fontsource-variable/playwrite-hr-lijeva/wght.css";
|
|
import "@fontsource-variable/jost/wght.css";
|
|
import "@fontsource-variable/playfair-display/wght.css";
|
|
import App from "./App.tsx";
|
|
|
|
const root = document.getElementById("root");
|
|
if (root) {
|
|
createRoot(root).render(
|
|
<StrictMode>
|
|
<App />
|
|
</StrictMode>,
|
|
);
|
|
}
|