mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-06-17 01:59:08 +00:00
feat(design-system): port templates
This commit is contained in:
parent
e61f827645
commit
c8adad6c81
18 changed files with 128 additions and 60 deletions
17
src/design-system/templates/auth-login/AuthLogin.stories.tsx
Normal file
17
src/design-system/templates/auth-login/AuthLogin.stories.tsx
Normal file
|
@ -0,0 +1,17 @@
|
|||
import * as React from 'react';
|
||||
import { AuthLogin } from './AuthLogin';
|
||||
import { guild } from 'roleypoly/src/design-system/shared-types/storyData';
|
||||
|
||||
export default {
|
||||
title: 'Templates/Auth: Login',
|
||||
args: {
|
||||
botName: 'roleypoly#3266',
|
||||
},
|
||||
};
|
||||
|
||||
export const NoSlug = (args) => <AuthLogin {...args} />;
|
||||
|
||||
export const WithSlug = (args) => <AuthLogin {...args} />;
|
||||
WithSlug.args = {
|
||||
guildSlug: guild,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue