UNPKG

@pagamio/frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

7 lines (6 loc) 207 B
interface FilterWrapperProps { isNarrow: boolean; children: React.ReactNode; } declare const FilterWrapper: ({ isNarrow, children }: FilterWrapperProps) => JSX.Element; export default FilterWrapper;