import React from 'react'; import { storiesOf } from '@storybook/react'; import { action } from '@storybook/addon-actions'; import { StoryContainer } from './helpers'; import { Modal, Panel, Button, Grid } from '../src'; class ModalDemo extends React.Component { constructor(props) { super(props); this.state = { open: false } } handleChange() { this.setState({ open: !this.state.open }); } render() { const { label } = this.props; return (
Are you sure you want to delete your template?
Are you sure you want to delete your template?