@centreon/react-components
Version:
react components used by centreon web frontend
14 lines (11 loc) • 402 B
JSX
/* eslint-disable no-alert */
import React from 'react';
import { storiesOf } from '@storybook/react';
import { ConfirmationDialog, PromptDialog } from '../src';
storiesOf('Dialog', module)
.add('Prompt', () => (
<PromptDialog active title="Prompt" info="Please enter a number" />
))
.add('Confirmation', () => (
<ConfirmationDialog active title="Confirm" info="Are you sure?" />
));