otterscan/src/index.tsx

32 lines
934 B
TypeScript
Raw Normal View History

2021-07-01 18:21:40 +00:00
import React from "react";
import ReactDOM from "react-dom";
2021-10-24 08:51:05 +00:00
import { Helmet } from "react-helmet";
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";
ReactDOM.render(
<React.StrictMode>
2021-10-24 08:51:05 +00:00
<Helmet>
<link
rel="preload"
href={spaceGrotesk}
as="font"
type="font/woff2"
crossOrigin="true"
/>
</Helmet>
2021-07-01 18:21:40 +00:00
<App />
</React.StrictMode>,
document.getElementById("root")
);
// 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();