每天3分钟CHO小课堂:周末适当补觉,有益身心
#每天3分钟CHO小课堂#
长期睡眠不好,你的身体欠下健康债。
而周末补补觉,对双“心”健康友好,
能降低患心血管疾病及抑郁症的风险。
但补觉也有技巧,懂这2点更健康哦~
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> ) }