import React from 'react'; import HelpTooltip from './help-tooltip'; export default { title: 'Helpers | Help Tooltip' }; export const _question = () => (
Hover over the question mark to view This is the help message
); export const _info = () => (
Hover over the info mark to view This is the help message
); export const _onTop = () => (
Hover over the info mark to view This is the help message
); export const _onRight = () => (
Hover over the info mark to view This is the help message
); export const _onLeft = () => (
Hover over the info mark to view This is the help message
); export const _withDelay = () => (
Hover over the info mark to view This tooltip had a 900ms delay
);