import { PropsWithChildren } from "react";

const CustomPostHogProvider = ({ children }: PropsWithChildren) => {
  return (
    <>{children}</>
  );
};

export default CustomPostHogProvider;