每天3分钟CHO小课堂:爱吃酸的人有福了
#每天3分钟CHO小课堂#
爱吃“酸”的家人们有福了,
吃饭的2个习惯,真能帮你控血糖。
干饭前,炫一点带酸味儿的浆果;
干饭时,来杯无糖酸奶代替部分主食。
长期如此,对体重和血糖都有益处~
0 人喜欢
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> ) }