New blog post:Extracting Employee Data with the BambooHR API - Practical Examples.
Install the library
npm install @apideck/components
Wrap your app in a ToastProvider
ToastProvider
import { ToastProvider } from '@apideck/components' const App = ({ Component, pageProps }: AppProps) => { return ( <ToastProvider> <Component {...pageProps} /> </ToastProvider> ) } export default App
Import the useToast hook and use it to open and close Toasts with the addToast and removeToast functions.
useToast
addToast
removeToast
import { useToast } from '@apideck/components' export default function MyComponent() { const { addToast } = useToast() return <button onClick={() => addToast({ title: 'Yo world' })}>Click</button> }
You can pass the type success, info, warning, and error to the addToast function.
success
info
warning
error
Coming soon