1. 라이브러리 설치> yarn add pqgrid 2. 컴포넌트 추가const Pqgrid = ({ options }) => { useEffect(() => { pq.grid('#grid', options); pq.grid('#grid').refreshDataAndView(); }, [options]); return ;}; 3. 컴포넌트 options 세팅const options = { collapsible: { on: false, toggle: false }, height: '100%', maxHeight: '100%', showTitle: false, menuIcon: false, reactive: true, resizable: true, ..