Getting Started
Input
Forms
Navigation and actionables
Data Display
Toast
An opinionated toast component for React.
Toaster
This needs to be placed in the root component of your application.
import { Toaster } from '@nerdfish/react/toast'
function RootLayout({ children }: RootLayoutProps) {
return (
<html lang="en">
<body>
<Toaster />
{children}
</body>
</html>
)
}