// @flow /* eslint-disable import/no-extraneous-dependencies */ import React from 'react' const StoryHost = ({ border, width, children, }: { border?: boolean, width?: number | string, children: any, }) => (
{border || width ? (
{children}
) : ( children )}
) export default StoryHost