mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-02-18 04:20:45 +03:00
Fix class property in todomvc example
Fix error caused by missing semicolon in the class property declaration. Relevant part of the ES proposal: https://github.com/jeffmo/es-class-fields-and-static-properties#145-class-definitions Full error message: > ERROR in ./components/Footer.js Module build failed: SyntaxError: redux-devtools/examples/todomvc/components/Footer.js: A semicolon is required after a class property (18:3)
This commit is contained in:
parent
f53f660df2
commit
4a1cf39063
|
@ -15,7 +15,7 @@ export default class Footer extends Component {
|
|||
filter: PropTypes.string.isRequired,
|
||||
onClearMarked: PropTypes.func.isRequired,
|
||||
onShow: PropTypes.func.isRequired
|
||||
}
|
||||
};
|
||||
|
||||
render() {
|
||||
return (
|
||||
|
|
Loading…
Reference in New Issue
Block a user