rsnext/examples/with-refnux/store/getInitialState.js

9 lines
111 B
JavaScript
Raw Normal View History

2017-02-21 05:13:05 +01:00
const getInitialState = () => {
return {
title: '',
counter: 0
}
2017-02-21 21:52:44 +01:00
}
2017-02-21 05:13:05 +01:00
2017-02-21 21:52:44 +01:00
export default getInitialState