Added missing "order" attribute to ColumnProps (#25336)

reactstrap supports the order attribute in the props of the <Col> component.
This was still missing from the types.
See: https://reactstrap.github.io/components/layout/
This commit is contained in:
devjedi
2018-05-03 18:54:57 +02:00
committed by Andy
parent f12457243f
commit fe2dca7edd

View File

@@ -7,6 +7,7 @@ export type ColumnProps
push?: string | number
pull?: string | number
offset?: string | number
order?: string | number
};
export interface ColProps extends React.HTMLProps<HTMLDivElement> {