v3/packages/design-system/molecules/preauth-greeting/PreauthGreeting.stories.tsx

13 lines
347 B
TypeScript

import * as React from 'react';
import { mastheadSlugs } from '../../fixtures/storyData';
import { PreauthGreeting } from './PreauthGreeting';
export default {
title: 'Molecules/Preauth/Greeting',
component: PreauthGreeting,
args: {
guildSlug: mastheadSlugs[0],
},
};
export const Greeting = (args) => <PreauthGreeting {...args} />;