8 lines
199 B
TypeScript
8 lines
199 B
TypeScript
'use client';
|
|
|
|
import * as React from 'react';
|
|
|
|
import { UserPresenceAvatar } from '@/registry/ui-elements/user-presence-avatar';
|
|
|
|
export const UserPresenceAvatarDemo = () => <UserPresenceAvatar />;
|