import { PropsWithChildren } from "react"; import { useOpenIMBootstrap } from "@/features/im/hooks/use-openim-bootstrap"; export function AppBootstrapProvider({ children }: PropsWithChildren) { useOpenIMBootstrap(); return children; }