mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
32 lines
696 B
TypeScript
32 lines
696 B
TypeScript
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)}
|
|
/>
|
|
</>
|
|
);
|
|
}
|