mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
15 lines
316 B
JavaScript
15 lines
316 B
JavaScript
import useGeneralStore from './stores/useGeneralStore';
|
|
|
|
const useClickForm = () => {
|
|
const { setShowPostForm, setShowPostFormLink } = useGeneralStore.getState();
|
|
|
|
const handleClickForm = () => {
|
|
setShowPostForm(true);
|
|
setShowPostFormLink(false);
|
|
};
|
|
|
|
return handleClickForm;
|
|
};
|
|
|
|
export default useClickForm;
|