mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 20:09:11 +00:00
15 lines
403 B
TypeScript
15 lines
403 B
TypeScript
import * as React from 'react';
|
|
import { mastheadSlugs, user } from '../../fixtures/storyData';
|
|
import { ServerSetupTemplate } from './ServerSetup';
|
|
|
|
export default {
|
|
title: 'Templates/Server Setup',
|
|
component: ServerSetupTemplate,
|
|
args: {
|
|
guilds: mastheadSlugs,
|
|
user: user,
|
|
guildSlug: mastheadSlugs[1],
|
|
},
|
|
};
|
|
|
|
export const serverSetup = (args) => <ServerSetupTemplate {...args} />;
|