8 lines
288 B
JavaScript
8 lines
288 B
JavaScript
import React from "react";
|
|
import { createRoot } from "react-dom/client";
|
|
import App from "./App";
|
|
import "bootstrap/dist/css/bootstrap.min.css";
|
|
import 'bootstrap/dist/js/bootstrap.bundle.min.js';
|
|
|
|
const container = document.getElementById("root");
|
|
createRoot(container).render(<App />); |