ReorderableEntry
Type Alias: ReorderableEntry<T>
type ReorderableEntry<T> = {
data: T;
label: ReactNode;
position: number;
};
Defined in: src/custom-components/ReorderableList.tsx:11
A ReorderableList entry of type
Type Parameters
• T
Type declaration
data?
optional data: T;
label
label: ReactNode;
position
position: number;
Param
The name of this entry in the list.
Param
Optional data to connect to this entry.
Param
The position of this entry in the list.