manually port fix from 16286 and address PR (#17003)

This commit is contained in:
Yui 2017-06-08 15:50:41 -07:00 committed by Mohamed Hegazy
parent 7019f85ea5
commit eef8a774f5
2 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
interface Props {
interface Props extends React.HTMLProps< HTMLElement> {
className?: string;
tag?: React.ReactType;
noGutters?: boolean;
}
declare var Row: React.StatelessComponent<React.HTMLProps<any>>;
declare var Row: React.StatelessComponent<Props>;
export default Row;

View File

@ -549,7 +549,7 @@ const Example26 = (props: any) => {
const Example27 = (props: any) => {
return (
<Row>
<Row noGutters>
<Col sm="6">
<Card block>
<CardTitle>Special Title Treatment</CardTitle>