import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import BotinoPeinture from "./BotinoPeinture.jsx";
import "./index.css";

createRoot(document.getElementById("root")).render(
  <StrictMode>
    <BotinoPeinture />
  </StrictMode>
);
