npm.io
0.0.1-rc.2 • Published 3 years ago

tokra-use-next

Licence
MIT
Version
0.0.1-rc.2
Deps
1
Size
10 kB
Vulns
0
Weekly
0

tokra-use-next

Exobase root hook to handle function running on Next.js api functions

Install

yarn add tokra-use-next

Usage

import { compose } from 'radash'
import type { Props } from 'tokra'
import { useNext } from 'tokra-use-next'

export const pingEndpoint = async (props: Props) => {
  return {
    message: 'pong'
  }
}

export default compose(useNext(), pingEndpoint)