const createMockComponent = (testId?: string, props?: any) => (
{props.children}
) const parseMockComponentProps = (element: HTMLElement) => JSON.parse(element.getAttribute('data-props') ?? '{}') export { createMockComponent, parseMockComponentProps }