import React, { useState } from 'react'; import { storiesOf } from '@storybook/react'; import Popover from '../index'; import Button from '../../button'; const stories = storiesOf('popover', module); const POSITION_SET:string[] = [ 'top', 'topLeft', 'topRight', 'left', 'leftTop', 'leftBottom', 'right', 'rightTop', 'rightBottom', 'bottom', 'bottomLeft', 'bottomRight', 'leftTopOver', 'rightTopOver', ] stories.add('positions', () => (
Hi Bytedancer!