A social knowledge tool for researchers built on ATProto

docs: profile empty tab story

+17
+17
src/webapp/features/profile/components/profileEmptyTab/ProfileEmptyTab.stories.tsx
··· 1 + import type { Meta, StoryObj } from '@storybook/nextjs-vite'; 2 + import ProfileEmptyTab from './ProfileEmptyTab'; 3 + import { IoMdAlert } from 'react-icons/io'; 4 + 5 + const meta = { 6 + component: ProfileEmptyTab, 7 + } satisfies Meta<typeof ProfileEmptyTab>; 8 + 9 + export default meta; 10 + type Story = StoryObj<typeof meta>; 11 + 12 + export const Primary: Story = { 13 + args: { 14 + message: 'A message that indicates this tab on profile has no content', 15 + icon: IoMdAlert, 16 + }, 17 + };