【🇬🇧🇬🇮10.20 直布罗陀】
趁着签证还没过期,一日速通带英(真)
终于见到西班牙国旗🇪🇸上的海格力斯之柱了,一边是直布罗陀巨岩,另一边是摩洛哥的摩西山(或者是休达的雅科山)。地中海门户直布罗陀海峡,地理书的常客,实际看来也挺窄的,像这次天气好直接就能看到对岸的非(广)洲(州)
最后回到西班牙境内跟回到家了一样,令人感叹,终于不用说英语辣😭
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> ) }