import React from 'react';

export const TestWrapper = ({ children }: { children: React.ReactNode }) => {
  return <>{children}</>;
};
