import { SectionCards } from '../components/ui/SectionCards'; import { withAuth } from '../components/withAuth'; import sections from '../data/customersSections.json'; const Page = () => { return ( <>

Customers

); }; export const CustomersPage = withAuth( Page );