Master react (#19439)

chore(react): react rc3 release
This commit is contained in:
Ely Lucas
2019-09-24 11:52:12 -06:00
committed by GitHub
parent e90e960294
commit 61f04e50b1
15 changed files with 71 additions and 39 deletions

View File

@ -1,5 +1,5 @@
import React from 'react';
import { generateUniqueId, isDevMode } from '../utils';
import { generateId, isDevMode } from '../utils';
import { View } from './View';
import { ViewTransitionManager } from './ViewTransitionManager';
import { RouteManagerContext } from './RouteManagerContext';
@ -18,7 +18,7 @@ export class StackManager extends React.Component<StackManagerProps, StackManage
constructor(props: StackManagerProps) {
super(props);
this.id = this.props.id || generateUniqueId();
this.id = this.props.id || generateId();
this.handleViewSync = this.handleViewSync.bind(this);
this.handleHideView = this.handleHideView.bind(this);
}