import React, { useRef } from 'react' import { css } from '@emotion/react' import { GlobalStyle } from '../src/shared/components' import useResizeObserver from 'use-resize-observer' const wrapperStyle = css` padding: 10px; height: calc(100vh - 20px); & > * + * { margin-left: 15px; } ` const sizeIndicatorStyle = css` position: absolute; font-size: 12px; right: 4px; top: 4px; ` const StylesWrapperDecorator = (styleFn) => { const ref = useRef(null) const { width, height } = useResizeObserver({ ref }) return (
{width}px x {height}px
{styleFn()}
) } export const decorators = [StylesWrapperDecorator] export const parameters = { actions: { argTypesRegex: '^on[A-Z].*' }, backgrounds: { default: 'black', values: [ { name: 'black', value: '#000000', }, { name: 'gray', value: '#272D33', }, ], }, }