UNPKG

kitten-components

Version:
13 lines (10 loc) 276 B
import React, { Fragment } from 'react' import { addDecorator } from '@storybook/react'; import { DevGrid } from 'kitten/components/dev/dev-grid' const GridDecorator = (storyFn) => ( <Fragment> { storyFn() } <DevGrid /> </Fragment> ) addDecorator(GridDecorator)