import React from 'react'; import { Meta, Story } from '@storybook/react'; import { SocialShare, SocialShareProps } from './SocialShare'; export default { title: 'Components/Social Sharing', component: SocialShare, argTypes: {}, parameters: { controls: { expanded: true }, }, } as Meta; const DefaultTemplate: Story = args => ( ); export const Default = DefaultTemplate.bind({}); Default.args = { title: 'CarletonLink', link: 'https://carleton.ca/', };