Files
lamp/providers/app-bootstrap-provider.tsx

10 lines
242 B
TypeScript

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