D
Size: a a a
D
a
D
a
MK
D
MA
ИФ
ИФ
MA
function getIP() {
const [ip, setIP] = useState("");
useEffect(() => {
async function fetchData() {
const res = await axios.post("https://some_addr/api/ip");
if (res !== undefined) {
setIP(res.data);
}
}
fetchData();
}, []);
D
function getIP() {
const [ip, setIP] = useState("");
useEffect(() => {
async function fetchData() {
const res = await axios.post("https://some_addr/api/ip");
if (res !== undefined) {
setIP(res.data);
}
}
fetchData();
}, []);
M
M
M
I
function getIP() {
const [ip, setIP] = useState("");
useEffect(() => {
async function fetchData() {
const res = await axios.post("https://some_addr/api/ip");
if (res !== undefined) {
setIP(res.data);
}
}
fetchData();
}, []);
MA
MA
M
M
A