Hooks
Some hooks that can be used with @kubb/react
.
useApp
useApp
will return the current App with plugin, pluginManager, fileManager, mode, ...
tsx
import { useApp } from '@kubb/react'
function Component() {
const { pluginManager, plugin, mode, exit, getFile, fileManager} = useApp()
return null
}
useFile
With useFile
you can get the context of the current file(basePath, name, ...)
tsx
import { File, useFile } from '@kubb/react'
function Component() {
const pluginName = 'custom-plugin'
const file = useFile()
return file.baseName
}