@airplane/views
Version:
A React library for building Airplane views. Views components are optimized in style and functionality to produce internal apps that are easy to build and maintain.
7 lines (6 loc) • 427 B
TypeScript
import { render, RenderOptions } from "@testing-library/react";
import { ReactElement } from "react";
declare const customRender: (ui: ReactElement, options?: Omit<RenderOptions, "wrapper">) => import("@testing-library/react").RenderResult<typeof import("@testing-library/dom/types/queries"), HTMLElement, HTMLElement>;
export * from "@testing-library/react";
export { render as rawRender };
export { customRender as render };