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
12 lines
295 B
JavaScript
12 lines
295 B
JavaScript
import React from 'react';
|
|
import '../../../.storybook/index.less';
|
|
import HelpTooltip from './help-tooltip';
|
|
|
|
export default { title: 'Help Tooltip' };
|
|
|
|
export const _default = () => (
|
|
<p>
|
|
Hover over the question mark to view <HelpTooltip>This is the help message</HelpTooltip>
|
|
</p>
|
|
);
|