ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
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> ```