0.1.3 • Published 2 years ago

react-code-verifier v0.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

react-code-verifier

multiplatform react code verifier

Installation

npm install react-code-verifier

Usage

import * as React from 'react';

import { StyleSheet, View } from 'react-native';
import CodeVerifier from 'react-code-verifier';

export default function App() {
  return (
    <View style={styles.container}>
      <CodeVerifier onChange={(value) => console.log(value)} />
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
  },
  box: {
    width: 60,
    height: 60,
    marginVertical: 20,
  },
});

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago