import {Link} from 'react-router-dom' import Icons from "../Icons"; export default function CustomerAccountView({accountInfo}) { return <>

Account Info

<> {(accountInfo && Object.keys(accountInfo).length > 0) ? {/**/} : }
Firstname Lastname Username Email Action
*/} {/*
*/} {/*
{1}
*/} {/*
*/} {/*
{accountInfo?.firstname}
{accountInfo?.lastname}
{accountInfo?.username}
{accountInfo?.email}
No Record Found
}