mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 20:09:11 +00:00
12 lines
357 B
TypeScript
12 lines
357 B
TypeScript
import { roleypolyGuild } from '../../fixtures/storyData';
|
|
import { ServerListingCard } from './ServerListingCard';
|
|
|
|
export default {
|
|
title: 'Molecules/Server Listing Card',
|
|
component: ServerListingCard,
|
|
args: {
|
|
guild: { ...roleypolyGuild, permissionLevel: 4 },
|
|
},
|
|
};
|
|
|
|
export const serverListingCard = (args) => <ServerListingCard {...args} />;
|