import { useEffect, useState } from "react"; export default function About() { const [posts, setPosts] = useState([]); useEffect(() => { fetch("https://api.imnya.ng/rss", { method: "GET", headers: { "Content-Type": "application/json" } }) .then(response => response.json()) .then(data => { if (data) { setPosts(data.slice(0, 3)); } else { console.error("Error: data is undefined"); } }) .catch(error => console.error("Error fetching posts:", error)); }, []); return (

πŸ€” About

μ•ˆλ…•ν•˜μ„Έμš”! μ €λŠ” μ•”λƒ₯μ΄λΌλŠ” μ΄λ¦„μœΌλ‘œ ν™œλ™ν•˜κ³  μžˆλŠ” 학생 개발자 λ‚¨ν˜„μ„μž…λ‹ˆλ‹€.

With Sqlare, TEAM. ORYGON:IX

졜근 λΈ”λ‘œκ·Έ κΈ€
); }