컴포넌트의 렌더 어레이를 리액트 질문 하나 할게요.컴포넌트 배열 렌더링 할 줄 아는 사람?개발자가 특정 컴포넌트를 쉽게 변경할 수 있도록 합니다.(대시보드 같은 거죠) 컴포넌트 리스트파일 import React from 'react'; export default [ ]; 대시보드 컴포넌트 import React from 'react'; import components from './../../components'; export default class Dashboard extends React.Component { render = () => { //Want to render the array of components here. return ( {components} ); }; } 문제는 키를 추가해야 하..