UNPKG

@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) 220 B
type Props = { initialValue: string; setValue: (value: string | undefined) => void; }; declare const Filter: ({ initialValue, setValue }: Props) => import("react/jsx-runtime").JSX.Element; export default Filter;