blob: 94c3c6c339c44d11dda6dc653d38526eea548ff0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
//import "./index.css";
//import App from "./App.jsx";
import AddUrl from "./components/AddUrl.jsx";
import ShowUrl from "./components/ShowUrl.jsx";
createRoot(document.getElementById("root")).render(
<StrictMode>
<ShowUrl />
</StrictMode>
);
|