accounts-frontend/packages/app/components/auth/activation/Activation.story.tsx

10 lines
317 B
TypeScript
Raw Normal View History

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} />);