mirror of
https://github.com/owncast/owncast.git
synced 2025-11-03 21:08:36 +08:00
* chore: Update storybook to v9 * Pin next-export-i18n + remove outdated mock library * Replace old mocking library with MSW * Resolve knip unused code warnings
13 lines
352 B
TypeScript
13 lines
352 B
TypeScript
import { Meta } from '@storybook/nextjs';
|
|
import { ChatModeratorNotification } from './ChatModeratorNotification';
|
|
|
|
const meta = {
|
|
title: 'owncast/Chat/Messages/Moderation Role Notification',
|
|
component: ChatModeratorNotification,
|
|
parameters: {},
|
|
} satisfies Meta<typeof ChatModeratorNotification>;
|
|
|
|
export default meta;
|
|
|
|
export const Basic = {};
|