mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
5f4c19da35
Co-authored-by: Opender Singh <opender.singh@konghq.com>
14 lines
298 B
TypeScript
14 lines
298 B
TypeScript
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>
|
|
);
|