React listViewComponent 사용해보기
npm i @syncfusion/ej2-react-lists@19.4.55 19.4.55 버전을 사용하겠습니다. 1. cmd 창에서 이 명령어를 실행해서 프로젝트에 install 받는다. npm install @syncfusion/ej2-react-lists --save 2. listView 컴포넌트를 아래 소스와 같이 import 시켜주고 선언한 App 아래에 return 안에 추가해준다. import * as React from 'react'; import { ListViewComponent } from '@syncfusion/ej2-react-lists'; import './App.css'; const App = () => { return ( //specifies the tag to render t..
2022.06.17