Skip to content

Instantly share code, notes, and snippets.

@0916dhkim
Created December 29, 2021 02:49
Show Gist options
  • Save 0916dhkim/de39075ddd5e03a942b3657a2aac7add to your computer and use it in GitHub Desktop.
Save 0916dhkim/de39075ddd5e03a942b3657a2aac7add to your computer and use it in GitHub Desktop.
export default function NewPost() {
const navigate = useNavigate();
const invalidateCache = useCacheInvalidate();
// ...
/** @type React.FormEventHandler */
const handleSubmit = async (e) => {
e.preventDefault();
await createPost({title, content});
invalidateCache('/posts');
navigate('/posts');
};
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment