mirror of
https://github.com/owncast/owncast.git
synced 2025-11-07 23:19:16 +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
18 lines
405 B
TypeScript
18 lines
405 B
TypeScript
import { Meta } from '@storybook/nextjs';
|
|
import { FatalErrorStateModal } from './FatalErrorStateModal';
|
|
|
|
const meta = {
|
|
title: 'owncast/Modals/Global error state',
|
|
component: FatalErrorStateModal,
|
|
parameters: {},
|
|
} satisfies Meta<typeof FatalErrorStateModal>;
|
|
|
|
export default meta;
|
|
|
|
export const Example = {
|
|
args: {
|
|
title: 'Example error title',
|
|
message: 'Example error message',
|
|
},
|
|
};
|