mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 03:49:11 +00:00
13 lines
316 B
TypeScript
13 lines
316 B
TypeScript
import * as React from 'react';
|
|
import { ServersTemplate } from '.';
|
|
import { mastheadSlugs, user } from '../../fixtures/storyData';
|
|
|
|
export default {
|
|
title: 'Templates/Servers Page',
|
|
args: {
|
|
guilds: mastheadSlugs,
|
|
user: user,
|
|
},
|
|
};
|
|
|
|
export const serversPage = (args) => <ServersTemplate {...args} />;
|