mirror of
https://github.com/supabase/supabase.git
synced 2026-05-22 17:00:43 +08:00
Sorted all imports in all packages, `cms`, `design-system` and `ui-library` apps by running `pnpm format` on them. All changes in this PR are done by the script.
15 lines
421 B
TypeScript
15 lines
421 B
TypeScript
// 'use client'
|
|
import { users } from './utils'
|
|
import { AvatarStack } from '@/registry/default/blocks/realtime-avatar-stack/components/avatar-stack'
|
|
|
|
const avatars = users.filter(
|
|
(u) =>
|
|
u.name === 'Mark S.' || u.name === 'Helly R.' || u.name === 'Irving B.' || u.name === 'Dylan G.'
|
|
)
|
|
|
|
const CurrentUserAvatarPreview = () => {
|
|
return <AvatarStack avatars={avatars} />
|
|
}
|
|
|
|
export default CurrentUserAvatarPreview
|