Rodrigo Ortega
Add gallery listing and media endpoints
27377d7
raw
history blame contribute delete
230 Bytes
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import App from "./App";
import "./index.css";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<App />
</StrictMode>
);