1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2025-06-16 13:46:16 +02:00

Resolve "Handle PATCH request"

This commit is contained in:
Maciej Lenartowicz
2019-09-25 11:56:08 +00:00
parent edc5c92421
commit d658f0b112
12 changed files with 265 additions and 220 deletions

View File

@ -1,5 +1,8 @@
// API
export { useAPIGet, useAPIPost, useAPIDelete } from "./api/hooks";
export { useAPIGet } from "api/get";
export { useAPIPost } from "api/post";
export { useAPIDelete } from "api/delete";
export { useAPIPatch } from "api/patch";
// Bootstrap
export { Alert } from "bootstrap/Alert";