This is due to incorrect usage of the ternary operator. See documentation here:
https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Operators/Conditional_Operator
You should not wrap it with {}
as you have done.
Try the following:
style={{display: this.state.showStore ? 'block' : 'none' }}