리액트
리액트에서 string 데이터와 ReactElement가 혼합된 데이터 렌더링 하기
리액트에서 배열의 데이터가 문자열과 ReactElement 두 가지 유형이 들어올 때, 해당 배열을 map을 사용하여 렌더링하려면 각 항목의 유형을 확인하고 적절히 처리해야 합니다. 렌더링 해야하는 데이터 const items = [ "20180326-2", { $$typeof: Symbol(react.element) key: null props: {} ref: null type: "br" _owner: FiberNode {tag: 11, key: null, elementType: {…}, type: {…}, stateNode: null, …} _store: {validated: false} _self: null _source: null }, "dddd" ] 예시 코드 배열 items의 각 항목을 검사하..
2023. 10. 11. 01:15