mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 20:09:11 +00:00
13 lines
347 B
TypeScript
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} />;
|