2025-08-13 03:23:49 -07:00

14 lines
248 B
JavaScript

"use client";
import { useEffect } from "react";
export default function BootstrapInit() {
useEffect(() => {
if (typeof window !== "undefined") {
require("bootstrap/dist/js/bootstrap.bundle.min.js");
}
}, []);
return null;
}