otterscan/src/index.tsx

35 lines
1.1 KiB
TypeScript
Raw Normal View History

2021-07-01 18:21:40 +00:00
import React from "react";
2022-08-07 02:40:59 +00:00
import { createRoot } from "react-dom/client";
2021-10-25 18:14:01 +00:00
import { HelmetProvider, Helmet } from "react-helmet-async";
2021-07-01 18:21:40 +00:00
import "@fontsource/space-grotesk/index.css";
import "@fontsource/roboto/index.css";
import "@fontsource/roboto-mono/index.css";
2021-10-24 08:51:05 +00:00
import spaceGrotesk from "@fontsource/space-grotesk/files/space-grotesk-latin-400-normal.woff2";
2021-07-01 18:21:40 +00:00
import "./index.css";
import App from "./App";
import reportWebVitals from "./reportWebVitals";
2022-08-07 02:40:59 +00:00
const container = document.getElementById("root");
const root = createRoot(container!);
root.render(
2021-07-01 18:21:40 +00:00
<React.StrictMode>
2021-10-25 18:14:01 +00:00
<HelmetProvider>
<Helmet>
<link
rel="preload"
href={spaceGrotesk}
as="font"
type="font/woff2"
crossOrigin="true"
/>
</Helmet>
<App />
</HelmetProvider>
2022-08-07 02:40:59 +00:00
</React.StrictMode>
2021-07-01 18:21:40 +00:00
);
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();