목록2025/01/07 (1)
공부하는 진희
캠프 Ch5. TIL | 1월 7일
import react from 'react'const App = () => { const style = { display: "flex", gap: "12px", padding: "50px", } const users = [ { id: 1, age: 30, name: "송중기" }, { id: 2, age: 24, name: "송강" }, { id: 3, age: 28, name: "이보라" }, { id: 4, age: 22, name: "김지수" }, ]; return ( {users.map(function(u..
Today I Learned
2025. 1. 7. 23:47