Last change
on this file since 0f5aa27 was e6c2521, checked in by darsov2 <62809499+darsov2@…>, 10 months ago |
images upload/download impl, other fixes
|
-
Property mode
set to
100644
|
File size:
580 bytes
|
Rev | Line | |
---|
[e6c2521] | 1 | import React from "react";
|
---|
| 2 | import axios from "axios";
|
---|
| 3 | import { useHistory } from 'react-router-dom';
|
---|
| 4 |
|
---|
| 5 | const useCreateReview = () => {
|
---|
| 6 |
|
---|
| 7 | const history = useHistory();
|
---|
| 8 | const createReview = async ({review}) => {
|
---|
| 9 | await axios
|
---|
| 10 | .post(`/review/add`, user)
|
---|
| 11 | .then((res) => {
|
---|
| 12 | history.push('/review');
|
---|
| 13 | })
|
---|
| 14 | .catch((err) => {
|
---|
| 15 | console.log(err);
|
---|
| 16 | })
|
---|
| 17 | .finally(() => {
|
---|
| 18 | });
|
---|
| 19 | }
|
---|
| 20 | return (
|
---|
| 21 | createReview
|
---|
| 22 | )
|
---|
| 23 |
|
---|
| 24 | }
|
---|
| 25 |
|
---|
| 26 | export default useCreateReview; |
---|
Note:
See
TracBrowser
for help on using the repository browser.