Skip to content

Commit 7f724d3

Browse files
committed
Append prop types
1 parent 6fa8162 commit 7f724d3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

App/Containers/Root/RootScreen.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import ExampleScreen from 'App/Containers/Example/ExampleScreen'
77
import SplashScreen from 'App/Containers/SplashScreen/SplashScreen'
88
import { connect } from 'react-redux'
99
import StartupActions from 'App/Stores/Startup/Actions'
10+
import { PropTypes } from 'prop-types'
1011

1112
/**
1213
* The root screen contains the application's navigation.
@@ -52,6 +53,10 @@ class RootScreen extends Component {
5253
}
5354
}
5455

56+
RootScreen.propTypes = {
57+
startup: PropTypes.func,
58+
}
59+
5560
const mapStateToProps = (state) => ({})
5661

5762
const mapDispatchToProps = (dispatch) => ({

0 commit comments

Comments
 (0)