import React, { useRef } from 'react';
import { useReactToPrint } from "react-to-print";
const BeritaAcara = () => {
const componentRef = useRef();
const handlePrint = useReactToPrint({
content: () => componentRef.current,
});
return (<>
Information
- Name : Dr Andrew C S Koh
- Email : Andrew@gmail.com
- Gender : Male
- Date of Birth : 07-24-1982
- Phone No: 9856231456
- Address : 26 Wyle Cop, Shrewsbury, Shropshire, SY1 1XD
- Website : www.Andrew.com
- Country : United states
>
)
}
export default BeritaAcara