add useCreateStack hook

This commit is contained in:
Ievgen Dilevskyi 2021-07-14 17:09:34 -06:00
parent 04fdb4b0e1
commit bb96fe4774

View File

@ -0,0 +1,9 @@
import { useAppContext } from '../../contexts/AppContext'
import { Stack } from '../../types'
export const useCreateStack = () => {
const api = useAppContext()
return (body: Omit<Stack, 'id'>): Promise<Stack> =>
api.post<Stack>('/stacks', body)
}