nukeop/nuclear

View on GitHub
packages/ui/stories/components/libraryView.stories.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import { storiesOf } from '@storybook/react';

import { LibraryListTypeToggle } from '../..';

storiesOf('Components/Library list type toggle', module)
  .add('Basic', () => (
    <div className='bg'>
      <LibraryListTypeToggle toggleListType={alert}/>
    </div>
  ));