Chiciuc Nicușor
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
0 deletions
-
components/timeline/Timeline.tsx
-
components/timeline/TimelineItem.tsx
|
|
@ -13,6 +13,7 @@ export interface TimelineProps { |
|
|
|
style?: React.CSSProperties; |
|
|
|
reverse?: boolean; |
|
|
|
mode?: 'left' | 'alternate' | 'right'; |
|
|
|
children?: React.ReactNode; |
|
|
|
} |
|
|
|
|
|
|
|
export default class Timeline extends React.Component<TimelineProps, any> { |
|
|
|
|
|
@ -11,6 +11,7 @@ export interface TimeLineItemProps { |
|
|
|
pending?: boolean; |
|
|
|
position?: string; |
|
|
|
style?: React.CSSProperties; |
|
|
|
children?: React.ReactNode; |
|
|
|
} |
|
|
|
|
|
|
|
const TimelineItem: React.SFC<TimeLineItemProps> = props => ( |
|
|
|