Skip to content

Commit

Permalink
Add PropTypes for theme as per reduxjs/redux-devtools@c5165b1
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon committed Sep 24, 2015
1 parent 75f1f88 commit 6a4f5ab
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/LogMonitor.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ class LogMonitor extends Component {
jumpToState: PropTypes.func.isRequired,
setMonitorState: PropTypes.func.isRequired,
select: PropTypes.func.isRequired,
visibleOnLoad: PropTypes.bool
visibleOnLoad: PropTypes.bool,
theme: PropTypes.oneOfType([
PropTypes.object,
PropTypes.string
])
};

static defaultProps = {
Expand Down

0 comments on commit 6a4f5ab

Please sign in to comment.