resolv conflicts

This commit is contained in:
Alex Santos 2022-06-26 12:23:26 -03:00
parent 020fe30314
commit 7aff508092

View File

@ -24,20 +24,14 @@ export default function index({userName}: any) {
console.log(editorRef.current.getContent());
}
};
const handleChange = (event: SelectChangeEvent) => {
setText(event.target.value);
};
async function handleRegisterAboutUs() {
await api.post('/aboutUs', {
about: editorRef.current.value
}).then(res => {
console.log(res)
}).catch(res => console.log(res))
}