mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
42e198bf75
* Gruvbox theme * Added Storybook for all components that don't fail in browser
8 lines
244 B
JavaScript
8 lines
244 B
JavaScript
import React from 'react';
|
|
import '../../../.storybook/index.less';
|
|
import GravatarImg from './gravatar-img';
|
|
|
|
export default { title: 'Gravatar Image' };
|
|
|
|
export const _default = () => <GravatarImg email="support@insomnia.rest" size={200} />;
|