mirror of
https://github.com/status-im/react-native.git
synced 2025-01-27 01:40:08 +00:00
Fixing typo in AppContainer
Summary: Fixed a typo. Adding an optional wrapper component to AppContainer. Reviewed By: fkgozali Differential Revision: D5330056 fbshipit-source-id: 8e33fcbfb21168c641abbd54b79d272a7c361889
This commit is contained in:
parent
afa47924d6
commit
937568b472
@ -24,11 +24,11 @@ const View = require('View');
|
|||||||
type Context = {
|
type Context = {
|
||||||
rootTag: number,
|
rootTag: number,
|
||||||
};
|
};
|
||||||
type Props = {
|
type Props = {|
|
||||||
children?: React.Children,
|
children?: React.Children,
|
||||||
rootTag: number,
|
rootTag: number,
|
||||||
WrapperComponent?: ?ReactClass<*>,
|
WrapperComponent?: ?ReactClass<*>,
|
||||||
};
|
|};
|
||||||
type State = {
|
type State = {
|
||||||
inspector: ?React.Element<*>,
|
inspector: ?React.Element<*>,
|
||||||
mainKey: number,
|
mainKey: number,
|
||||||
|
@ -31,7 +31,7 @@ function renderApplication<Props: Object>(
|
|||||||
invariant(rootTag, 'Expect to have a valid rootTag, instead got ', rootTag);
|
invariant(rootTag, 'Expect to have a valid rootTag, instead got ', rootTag);
|
||||||
|
|
||||||
ReactNative.render(
|
ReactNative.render(
|
||||||
<AppContainer rootTag={rootTag} wrapperComponent={WrapperComponent}>
|
<AppContainer rootTag={rootTag} WrapperComponent={WrapperComponent}>
|
||||||
<RootComponent {...initialProps} rootTag={rootTag} />
|
<RootComponent {...initialProps} rootTag={rootTag} />
|
||||||
</AppContainer>,
|
</AppContainer>,
|
||||||
rootTag,
|
rootTag,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user