Ready to post? First, try searching for your answer.
import { withPageAuthRequired } from ‘@auth0/nextjs-auth0’;
import { Account } from ‘@cadex/account’;
import { Container, Grid } from ‘@mui/material’;
import { NextPage } from ‘next’;
/**
- Name: AccountListPage
- Desc: The AccountListPage component renders a list of accounts using Material-UI’s Container and Grid components. It imports the Account component from the ‘@cadex/account’ library and organizes the layout with responsive grid settings.
*/
const AccountListPage: NextPage = withPageAuthRequired(async () => {
return (
<Grid rowSpacing={1} columnSpacing={{ xs: 1, sm: 2, md: 3 }}>
);
});
export default AccountListPage;