* chore: Update storybook to v9 * Pin next-export-i18n + remove outdated mock library * Replace old mocking library with MSW * Resolve knip unused code warnings
17 lines
414 B
TypeScript
17 lines
414 B
TypeScript
import { Meta } from '@storybook/nextjs';
|
|
import ConfigFederation from '../pages/admin/config-federation';
|
|
|
|
const meta = {
|
|
title: 'owncast/Admin/Config/Federation',
|
|
component: ConfigFederation,
|
|
parameters: {},
|
|
} satisfies Meta<typeof ConfigFederation>;
|
|
|
|
export default meta;
|
|
|
|
const Template = arguments_ => <ConfigFederation {...arguments_} />;
|
|
|
|
export const Default = Template.bind({});
|
|
|
|
Default.args = {};
|