import React from 'react' import type { Meta, StoryObj } from '@storybook/react' import { NotificationType } from '@dcl/schemas' import { Network } from '@dcl/schemas/dist/dapps/network' import { Rarity } from '@dcl/schemas/dist/dapps/rarity' import { NFTCategory } from '@dcl/schemas/dist/dapps/nft-category' import { UserMenuSignedIn } from './UserMenuSignedIn' import { NotificationActiveTab } from '../../Notifications/types' import { avatar } from '../../../data/avatar' import '../UserMenu.stories.css' import { i18n } from '../UserMenu.i18n' const meta: Meta = { title: 'UserMenuSignedIn', component: UserMenuSignedIn } export default meta type Story = StoryObj export const Guest: Story = { render: () => (
) } export const WithoutProfile: Story = { render: () => (
) } export const SignedIn: Story = { render: () => (
) } export const Complete: Story = { render: () => (
) }