14 lines
248 B
JavaScript
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;
|
|
}
|