import React from 'react' import { Meta } from '@storybook/react' import { TextLink } from './TextLink' export default { title: 'Components/TextLink', component: TextLink, } as Meta export const Basic = () => ( Hello! 👋 )