早上有这个习惯,在无意中保护心脏
早上有这个习惯,在无意中保护心脏。
“赖床”能给心脏争取一个适应过程,
也给全身肌肉关节一个苏醒的信号。
可赖床也有门道,需要把控好时间,
跟练这些姿势,让你早晨更神清气爽~
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> ) }