반응형
UserList.js
import styles from "./UserList.module.css";
// import "./UserList.css";
import Card from './UI/Card';
const UserList = (props) => {
return <Card className={styles.userList__container}>
<div className={styles.userList__inner}>
<p>UserList</p>
{props.userInfoArr.map((userInfo) =>
<input className={styles.userList__box} type="text" key={userInfo.userId} readOnly value={`${userInfo.userName} (${userInfo.userAge})`} />
)}
</div>
</Card>
}
export default UserList;
css파일도 module.css 파일로 변경하여
className 에다 각각 {style.classname} 형식으로 변경해서 입력했다
반응형
'온라인 강의 > React 완벽 가이드 [Udemy]' 카테고리의 다른 글
106. "ErrorModal" 컴포넌트 추가하기 (0) | 2023.06.06 |
---|---|
105. State를 통해 사용자 목록 관리하기 (0) | 2023.06.06 |
103. 검증 추가 및 로직 재설정하기 (0) | 2023.06.06 |
102. 사용자 입력 State 관리하기 (0) | 2023.06.06 |
101. 재사용 가능한 "Button" 컴포넌트 추가하기 (0) | 2023.06.06 |