Suspense function to retrieve the signed in user's information.
"use client";
import { usePlatform } from "@tailor-platform/auth/client";
const Component = async () => {
const { getCurrentUser } = usePlatform();
const user = getCurrentUser();
};
Generated using TypeDoc
Hook that provides utility functions for Tailor Platform-specific operations.