Skip to content

Frontend Implementation

Frontend Implementation

The Auth Module’s frontend implementation is designed to be comprehensive and self-contained, providing all necessary components, assets, hooks, and context providers within the module itself. This approach ensures modularity and ease of use across different parts of the application.

Components

The module includes a set of pre-built components for common authentication scenarios:

  • NotificationSender: React Component to trigger the notification.

These components are designed to be easily customizable and can be styled to match your application’s design system.

import NotificationSender from "@app-launch-kit/modules/notifications/components/NotificationSender";
const NotificationSenderComponent = () => {
return <NotificationSender />;
};