Module

FPO.Page.Login

Simple test page for login.

This page is currently not connected to any backend and does not perform any authentication.

Additionally, this page shows how to use MonadStore to update and read data from the store.

#component

component :: forall query output m. Navigate m => MonadStore Action Store m => MonadAff m => Component query Input output m

Login component.

Notice how we are using MonadStore to update the store with the user's email when the user clicks on the button.

Modules