mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-26 15:00:23 +05:30
11 lines
358 B
TypeScript
11 lines
358 B
TypeScript
|
import React from 'react';
|
||
|
import { storiesOf } from '@storybook/react';
|
||
|
|
||
|
import { AuthPresenter } from 'app/components/auth/Auth.story';
|
||
|
|
||
|
import ChooseAccount from './ChooseAccount';
|
||
|
|
||
|
// TODO: provide accounts list
|
||
|
// TODO: provide application name
|
||
|
storiesOf('Components/Auth', module).add('ChooseAccount', () => <AuthPresenter factory={ChooseAccount} />);
|