Warning: Received `false` for a non-boolean attribute `xxx`.

看風景就發表於2018-10-20

React對boolean型別的attribute的識別方式問題,可以採用以下方法解決:

xxx={value ? 1 : 0}

改成數字的寫法,不用布林值。

具體可以參考:https://github.com/styled-components/styled-components/issues/1198

相關文章