continuousProfilesProvider.tsx 199 B

12345678
  1. interface ContinuousProfilesProviderProps {
  2. children: React.ReactNode;
  3. }
  4. export default function ContinuousProfilesProvider({
  5. children,
  6. }: ContinuousProfilesProviderProps) {
  7. return children;
  8. }