7 lines
268 B
TypeScript
7 lines
268 B
TypeScript
export default async function Page() {
|
|
return <>
|
|
<h1>This is manage pet account content</h1>
|
|
<p>Given the user account ID, need to load all active pet accounts and display data like friends and whatnot. have button to create/delete pet account</p>
|
|
</>
|
|
}
|