import React from 'react';
import { action } from 'storybook/actions';
import { BrowserRouter } from 'react-router-dom';
import { States } from '../../utilities';
import { Clickable, ClickableProps } from './Clickable';
export default { title: 'Components/Clickable' };
export const Button = () => (
>
Useful to extend in place of <button/>. Click me.
);
export const Anchor = () => (
>
Useful to extend in place of <a/>. Click me.
);
export const Link = () => (
>
Useful to extend in place of <Link/>. Click me.
);