1.0.0 • Published 1 year ago

@symtend/react v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Symtend React

A React utility library.

Contributing

# To install dependencies:
npm i

# To run tests:
npm t
# ...or:
npm run test

# To build:
npm run build

Examples

const registrationPhases: ["PERSONAL_DATA", "CONTACT_DATA", "VERIFICATION"] = [
  "PERSONAL_DATA",
  "CONTACT_DATA",
  "VERIFICATION",
];
const { phase, setNextPhase, setPreviousPhase } = usePhase(
  registrationPhases,
  0
);