import React from 'react';
import { action } from 'storybook/actions';
import { BrowserRouter } from 'react-router-dom';
import { States } from '../../utilities';
import { ControlLink, ControlLinkProps } from './ControlLink';
export default { title: 'Components/ControlLink' };
const states = [
{},
{ disabled: true },
{ onClick: action('onClick') },
{ to: '#href' },
{ href: '#href' }
];
export const Underlined = () => (
states={states}>
Underlined Control Link
);
export const Blank = () => (
states={states}>
Blank Control Link
);