mirror of
https://github.com/nix-community/noogle.git
synced 2024-12-18 06:22:11 +03:00
12 lines
238 B
TypeScript
12 lines
238 B
TypeScript
import React from "react";
|
|
|
|
export type BasicDataItem = {
|
|
item: React.ReactNode;
|
|
key: string;
|
|
};
|
|
|
|
export type BasicDataViewProps = {
|
|
items: BasicDataItem[];
|
|
pageCount?: number;
|
|
handleSearch?: (term: string) => void;
|
|
}; |