react-redux: Fix compilation error for dumb reason.

This commit is contained in:
Sean Kelley
2016-03-31 11:06:38 -07:00
parent 231f8eadc1
commit 8a7d208e0d

View File

@@ -297,7 +297,7 @@ namespace TestTOwnPropsInference {
class OwnPropsComponent extends React.Component<OwnProps & StateProps, {}> {
render() {
return null;
return <div/>;
}
}