whisper-api-fast / src /index.tsx
Carl Combrinck
Add prettier, eslint, and husky
bb9ca3a
raw
history blame contribute delete
263 Bytes
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
import "./css/index.css";
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);