标签: reactjs
以下是在React中处理哑组件中某些逻辑的正确方法吗?
cmd = ("If not exists( Select*from ACTB where ID = @ID....
答案 0 :(得分:1)
更优雅:
const MyDumbContainer = ({ myObject }) => (myObject !== null) ? <div>{myObject.someData}</div> : null }