File size: 919 Bytes
41a71fd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
import { classNames } from '@/shared/lib/classNames/classNames';
import cls from './CreatePost.module.scss';
import { usePostStore } from '@/features/Post';
import { Button, ButtonSize, ButtonTheme } from '@/shared/ui/Button';
interface CreatePostProps {
className?: string;
}
export const CreatePost = (props: CreatePostProps) => {
const { className } = props;
const toggleModal = usePostStore((state) => state.toggleModal);
const changingEditablePost = usePostStore((state) => state.changingEditablePost);
const openEditPostForm = () => {
changingEditablePost(undefined);
toggleModal();
};
return (
<Button
className={classNames(cls.CreatePost, {}, [className])}
theme={ButtonTheme.PRIMARY}
size={ButtonSize.XL}
onClick={openEditPostForm}
>
Создать пост
</Button>
);
};
|