mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-06-16 09:39:09 +00:00
17 lines
383 B
TypeScript
17 lines
383 B
TypeScript
import * as React from 'react';
|
|
import { guild } from '../../fixtures/storyData';
|
|
import { AuthLogin } from './AuthLogin';
|
|
|
|
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,
|
|
};
|