import { forwardRef } from "react";
import QRCode from "react-qr-code";
const FamilyAccount = forwardRef(({ familyData, myRef, handlePrint }, ref) => {
return (
Username:{" "}
{familyData?.username ? familyData?.username : "please wait..."}
Pin:{" "}
{familyData?.pin ? familyData?.pin : "please wait..."}
or
Scan the code from mobile app
);
});
export default FamilyAccount;