blob: 208297d40e68dca549c05e9c06071c7adfb3b823 (
plain)
1
2
3
4
5
6
7
8
9
|
import { PropsWithChildren } from "react";
const CustomPostHogProvider = ({ children }: PropsWithChildren) => {
return (
<>{children}</>
);
};
export default CustomPostHogProvider;
|