mui material

FOR문 적용 : MAP

컴포넌트연습문제

셀렉트박스

라디오

배열

map 사용

var numbers = [1, 2, 3, 4, 5];

var processed = numbers.map(function (num) {
  return num * num;
});

console.log(processed);

Untitled

var colors = ["red", "orange", "blue", "pink", "gray"];
colors.map((color, index) => {
  console.log(color, index);
});

Untitled

MUI 사용

Alert

import Alert from '@mui/material/Alert';

<Alert severity="error"></Alert>

Icons

import Face3Icon from "@mui/icons-material/Face3";