Files
sqwerk/src/main.tsx
T
Rodney Osodo 9ba713b910 style(biome): add TS linter
Add biome as TS linter and formatter. Also added the config files for biome
2025-06-11 09:42:38 +03:00

10 lines
229 B
TypeScript

import React from "react";
import reactDom from "react-dom/client";
import App from "./app";
reactDom.createRoot(document.getElementById("root") as HTMLElement).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);