v3/packages/design-system/organisms/servers-listing/ServersListing.stories.tsx

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} />;