健康知识日报:你以为的“老花眼 其实是心血管“罢工”了
#健康知识日报#
血管“堵了”,会反映在眼睛上,
可能诱发眼底病变,影响视力。
日常做好血管养护,控好三高,
不仅有益健康,还能守护视力哦~
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> ) }