CFE-6 Fixed any bugs

This commit is contained in:
AmirHossein Mahmoodi
2023-10-02 16:09:05 +03:30
parent 3e36e3fedd
commit 7e2c18ca6c
4 changed files with 9 additions and 6 deletions

View File

@@ -3,6 +3,8 @@ import {rest} from "msw";
export const handler = [rest.get(GET_USER_ROUTE, (req, res, ctx) => {
return res(ctx.json({
id: 10
data: {
id: 10
}
}))
})]