@connect(state => { | |
const { someStore: { someProperty } } = state | |
const somePropertyPlusOne = someProperty + 1 | |
return { | |
somePropertyPlusOne | |
} | |
}) | |
export default class MyContainer extends Component { | |
// ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment