import React from 'react'
import { storiesOf } from '@storybook/react'
import { QRCode } from 'components/UI'
storiesOf('Components', module).addWithChapters('QR Code', {
subtitle: 'For displaying complex data in an easily scannable format.',
chapters: [
{
sections: [
{
title: 'default size',
sectionFn: () => (
/* eslint-disable max-len */
)
},
{
title: 'custom size',
sectionFn: () => (
)
}
]
}
]
})