Add working but unstyled notify registration modal

This commit is contained in:
Gabe Kangas
2022-05-29 21:52:38 -07:00
parent bf7319db9a
commit 1684979187
14 changed files with 258 additions and 74 deletions

View File

@@ -0,0 +1,31 @@
import { Button } from 'antd';
import { HeartFilled } from '@ant-design/icons';
import { useState } from 'react';
import Modal from '../ui/Modal/Modal';
import s from './ActionButton.module.scss';
export default function FollowButton() {
const [showModal, setShowModal] = useState(false);
const buttonClicked = () => {
setShowModal(true);
};
return (
<>
<Button
type="primary"
className={`${s.button}`}
icon={<HeartFilled />}
onClick={buttonClicked}
>
Follow
</Button>
<Modal
title="Follow <servername>"
visible={showModal}
handleCancel={() => setShowModal(false)}
/>
</>
);
}