0.0.1-rc.2 • Published 2 years ago

tokra-use-next v0.0.1-rc.2

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

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)