import * as React from 'react';
import { storiesOf } from '@storybook/react';

import { Link } from '../src';

storiesOf('Link', module)
  .add('isType default', () => (
    <Link href='#' isType='plus' router={{ pathname: 'asds' }}>Acessar</Link>
  ));