MCPcopy
hub / github.com/michaelshimeles/nextjs-starter-kit / UserInfo

Interface UserInfo

components/user-profile.tsx:18–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16import { Avatar, AvatarFallback, AvatarImage } from "./ui/avatar";
17
18interface UserInfo {
19 id: string;
20 name: string;
21 image?: string | null | undefined;
22 email: string;
23 emailVerified: boolean;
24 createdAt: Date;
25 updatedAt: Date;
26}
27
28export default function UserProfile({ mini }: { mini?: boolean }) {
29 const [userInfo, setUserInfo] = useState<UserInfo | null>(null);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected