mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
0b6356d984
* chore: rename file .tsx => .ts * fix: fix * test: add test case
17 lines
470 B
TypeScript
17 lines
470 B
TypeScript
import type * as React from 'react';
|
|
import toArray from 'rc-util/lib/Children/toArray';
|
|
|
|
import type { TimelineItemProps } from './TimelineItem';
|
|
|
|
function useItems(items?: TimelineItemProps[], children?: React.ReactNode): TimelineItemProps[] {
|
|
if (items && Array.isArray(items)) {
|
|
return items;
|
|
}
|
|
return toArray(children).map((ele: React.ReactElement<any>) => ({
|
|
children: ele?.props?.children ?? '',
|
|
...ele.props,
|
|
}));
|
|
}
|
|
|
|
export default useItems;
|