noogle/types/basicDataView.ts

12 lines
238 B
TypeScript
Raw Normal View History

2022-11-27 16:16:52 +03:00
import React from "react";
2022-11-26 12:36:08 +03:00
export type BasicDataItem = {
item: React.ReactNode;
key: string;
};
export type BasicDataViewProps = {
items: BasicDataItem[];
pageCount?: number;
handleSearch?: (term: string) => void;
2022-11-27 16:16:52 +03:00
};