UNPKG

250 BJavaScriptView Raw
1/* @flow */
2import React from 'react';
3import { storiesOf } from '@storybook/react';
4
5import Tooltip from '../src/components/tooltip';
6
7storiesOf('Tooltip', module).add('Tooltip with UA text', () => (
8 <Tooltip message="UA text goes here." />
9));