mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-04 04:29:40 +05:30
10 lines
317 B
TypeScript
10 lines
317 B
TypeScript
import React from 'react';
|
|
import { storiesOf } from '@storybook/react';
|
|
|
|
import { AuthPresenter } from 'app/components/auth/Auth.story';
|
|
|
|
import Activation from './Activation';
|
|
|
|
// TODO: add case with provided key
|
|
storiesOf('Components/Auth', module).add('Activation', () => <AuthPresenter factory={Activation} />);
|