mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 03:49:11 +00:00
12 lines
325 B
TypeScript
12 lines
325 B
TypeScript
import { mastheadSlugs } from '../../fixtures/storyData';
|
|
import { EditorInviteLink } from './EditorInviteLink';
|
|
|
|
export default {
|
|
title: 'Molecules/Editor Invite Link',
|
|
component: EditorInviteLink,
|
|
args: {
|
|
guild: mastheadSlugs[0],
|
|
},
|
|
};
|
|
|
|
export const editorInviteLink = (args) => <EditorInviteLink {...args} />;
|