Files
SCM-Manager/scm-ui/ui-components/src/Logo.stories.tsx
2019-10-19 16:38:07 +02:00

17 lines
323 B
TypeScript

import React from 'react';
import { storiesOf } from '@storybook/react';
import styled from 'styled-components';
import Logo from './Logo';
const Wrapper = styled.div`
padding: 2em;
background-color: black;
height: 100%;
`;
storiesOf('Logo', module).add('Default', () => (
<Wrapper>
<Logo />
</Wrapper>
));