import { memo } from '@/shared/utils';

export const AuthMiddleware = memo(({ children }) => {
  return children;
});
