Reverted commit D4027388

Reviewed By: yungsters

Differential Revision: D4027388

fbshipit-source-id: 8e3341b6f393ccf432c1a4e22a7cbf422284a06f
This commit is contained in:
Konstantin Raev
2016-10-16 04:11:59 -07:00
committed by Facebook Github Bot
parent dbfd046145
commit 6ea26c01de
62 changed files with 136 additions and 136 deletions

View File

@@ -202,7 +202,7 @@ class NavigationCardStack extends React.Component<DefaultProps, Props, void> {
this._renderScene = this._renderScene.bind(this);
}
render(): React.Element<*> {
render(): React.Element<any> {
return (
<NavigationTransitioner
navigationState={this.props.navigationState}
@@ -212,7 +212,7 @@ class NavigationCardStack extends React.Component<DefaultProps, Props, void> {
);
}
_render(props: NavigationTransitionProps): React.Element<*> {
_render(props: NavigationTransitionProps): React.Element<any> {
const {
renderHeader
} = this.props;
@@ -237,7 +237,7 @@ class NavigationCardStack extends React.Component<DefaultProps, Props, void> {
);
}
_renderScene(props: NavigationSceneRendererProps): React.Element<*> {
_renderScene(props: NavigationSceneRendererProps): React.Element<any> {
const isVertical = this.props.direction === 'vertical';
const style = isVertical ?