在 Inferno JS 中使用样式组件
Using styled-components with Inferno JS
我正在使用 InfernoJS 作为 React 的替代品。是否可以在没有 inferno-compat 的情况下在 Inferno 中使用 styled-components?
Inferno 有类似 React 的功能 API 但不会尝试 100% 兼容。 (与开箱即用的 styled-components
一起使用的 Preact 相反)
因为 styled-components
returns React 组件而不是 Inferno 组件你必须使用 inferno-compat
.
我正在使用 InfernoJS 作为 React 的替代品。是否可以在没有 inferno-compat 的情况下在 Inferno 中使用 styled-components?
Inferno 有类似 React 的功能 API 但不会尝试 100% 兼容。 (与开箱即用的 styled-components
一起使用的 Preact 相反)
因为 styled-components
returns React 组件而不是 Inferno 组件你必须使用 inferno-compat
.