[React] react-to-print 사용 방법
2023. 6. 19. 19:14
프로그래밍/React
react-to-print 사용 방법 react-to-print 설치 npm install react-to-print # or yarn add react-to-print react-to-print 간단한 예제 components 인쇄 import React, { useRef } from 'react'; import ReactToPrint from 'react-to-print'; import { ComponentToPrint } from './ComponentToPrint'; const Example = () => { const componentRef = useRef(); return ( Print this out!} content={() => componentRef.current} /> ); }; us..