Add undesigned functionality of follow modal. For #1862

This commit is contained in:
Gabe Kangas
2022-06-24 15:55:53 -07:00
parent 78dc183c11
commit 5d65b4b3b1
4 changed files with 101 additions and 13 deletions

View File

@@ -1,11 +1,11 @@
import React from 'react';
import { ComponentStory, ComponentMeta } from '@storybook/react';
import FollowModal from '../components/modals/FollowModal';
import FollowModal from '../components/modals/Follow/FollowModal';
import FollowModalMock from './assets/mocks/follow-modal.png';
const Example = () => (
<div>
<FollowModal />
<FollowModal handleClose={null} />
</div>
);