处理哑组件中的逻辑

时间:2016-11-29 04:18:47

标签: reactjs

以下是在React中处理哑组件中某些逻辑的正确方法吗?

cmd = ("If not exists( Select*from ACTB where ID = @ID....

1 个答案:

答案 0 :(得分:1)

更优雅:

const MyDumbContainer = ({ myObject }) => (myObject !== null)
    ? <div>{myObject.someData}</div>
    : null
}