We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fa8162 commit 7f724d3Copy full SHA for 7f724d3
App/Containers/Root/RootScreen.js
@@ -7,6 +7,7 @@ import ExampleScreen from 'App/Containers/Example/ExampleScreen'
7
import SplashScreen from 'App/Containers/SplashScreen/SplashScreen'
8
import { connect } from 'react-redux'
9
import StartupActions from 'App/Stores/Startup/Actions'
10
+import { PropTypes } from 'prop-types'
11
12
/**
13
* The root screen contains the application's navigation.
@@ -52,6 +53,10 @@ class RootScreen extends Component {
52
53
}
54
55
56
+RootScreen.propTypes = {
57
+ startup: PropTypes.func,
58
+}
59
+
60
const mapStateToProps = (state) => ({})
61
62
const mapDispatchToProps = (dispatch) => ({
0 commit comments