11 lines
189 B
TypeScript
11 lines
189 B
TypeScript
import { auth } from "@/auth";
|
|
|
|
const SettingsPage = async () => {
|
|
return (
|
|
<div>
|
|
{JSON.stringify(await auth())}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default SettingsPage; |