mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 11:59:11 +00:00
12 lines
310 B
TypeScript
12 lines
310 B
TypeScript
import { mastheadSlugs } from '../../fixtures/storyData';
|
|
import { ServersListing } from './ServersListing';
|
|
|
|
export default {
|
|
title: 'Organisms/Servers Listing',
|
|
component: ServersListing,
|
|
args: {
|
|
guilds: mastheadSlugs,
|
|
},
|
|
};
|
|
|
|
export const serversListing = (args) => <ServersListing {...args} />;
|