After form submit I want to clean it but this solution doesn't seem to work. here's my submit handler:
handleSubmit: ({ title, body }, props) => e => {
e.preventDefault()
props
.handleCreatePost({
variables: {
title,
body
}
})
.then(() => {
return {
title: "",
body: ""
}
})
.catch(err => console.log(err))
}
Every time you need to change props from inside of your component you have to use
withStateHandlers
.