import * as React from 'react' import { storiesOf } from '@storybook/react' import centered from '@storybook/addon-centered/react' import { Section } from './Section' import { Header } from '../Header/Header' storiesOf('Section', module) .addDecorator(centered) .add('Example', () => ( <>
Section 1
This is a section
Section 2
This is another section
))