每天3分钟CHO小课堂:太晚睡,也容易长胖哦!
#每天3分钟CHO小课堂#
你的胖,可能不全是因为没管住嘴,
也有可能是“睡”出来的!
每晚超过10点睡觉,更容易长胖。
所以,坚持早睡,“躺瘦”不是梦~
0 人喜欢
Comments
There is no comment, let's add the first one.
弦圈热门内容
[antd: Message] You are calling notice in render which will break in React 18 concurrent mode. Please trigger in effect instead.
I'm getting this error when using MessageWarning: [antd: Message] You are calling notice in render which will break in React 18 concurrent mode. Please trigger in effect instead.Here is my code:import { message } from 'antd'; export default function Page() { const [messageApi, contextHolder] = message.useMessage(); const res = await fetch("/api/...", { method: "POST", }); if (!res.ok) { messageApi.error("Error! Fail to login!"); } return ( <Home> ... </Home> ) }