@hyperobjekt/spi-auth
v1.2.2
Published
![npm (scoped)](https://img.shields.io/npm/v/@hyperobjekt/spi-auth)
Downloads
70
Readme
@hyperobjekt/spi-auth
Installation
npm i @hyperobjekt/spi-auth
# or
yarn @hyperobjekt/spi-auth
Usage
import { SpiAuth, EmailActionHandler, signOut, logEvent } from "@hyperobjekt/spi-auth";
const App = () => (
<>
<SpiAuth {...props} />
<EmailActionHandler />
<button onClick={signOut} />
</>
);
logEvent
Wrapper for logEvent from the Firebase SDK
logEvent('custom_event', {
property1: 'foo',
property2: 'bar'
});
<SpiAuth />
| Property | Type | Default | Description |
| -------------- | ------ | ------- | --------------------------------- |
| description?
| String | ""
| Introduction text for login modal |
<EmailActionHandler />
| Property | Type | Default | Description | | -------- | ---- | ------- | ----------- | | none | | | |
Contributing
Updates to permissions are done here
Deployments
Publish to npm by running npm version <patch|major|minor>
and npm publish
. SPI's dev team can then take over and update the package on their end.