NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
Received `false` for a non-boolean attribute `className`. ``` const isTrue = false const myInputRef = useRef(5); const htmlString = { __html : "<span>an</>" } function handleClick(event){ console.log(event); } return ( <div className={isTrue?'red':'green'}><h1 className="question">{text}<hr/></h1> ``` ``` const isTrue = false.toString() const myInputRef = useRef(5); const htmlString = { __html : "<span>an</>" } function handleClick(event){ console.log(event); } return ( <div className={isTrue?'red':'green'}><h1 className="question">{text}<hr/></h1> ```