baseui
Version:
A React Component library implementing the Base design language
13 lines (12 loc) • 364 B
TypeScript
import * as React from 'react';
import type { StatefulListProps, StateReducer } from './types';
declare function StatefulList(props: StatefulListProps): React.JSX.Element;
declare namespace StatefulList {
var defaultProps: {
initialState: {
items: any[];
};
stateReducer: StateReducer;
};
}
export default StatefulList;