diff options
author | Rohan Raj Gupta <[email protected]> | 2022-08-02 12:58:05 +0530 |
---|---|---|
committer | GitHub <[email protected]> | 2022-08-02 12:58:05 +0530 |
commit | 9e381861ad817106b7ae74b1976e016fd538ac0a (patch) | |
tree | ce04b0994c171e9f1c939dd91aa2f05d2c03a9f7 /client/src/components/Card/CardBiometrics.jsx | |
parent | 5f8f6f98c2c47ca878aadb893b0d64a0c66316aa (diff) | |
parent | 905dc038ca2e4bbb315c4c583c94a96948e68fa9 (diff) |
Merge pull request #2 from Blaster4385/develop
Add remaining pages
Diffstat (limited to 'client/src/components/Card/CardBiometrics.jsx')
-rw-r--r-- | client/src/components/Card/CardBiometrics.jsx | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/client/src/components/Card/CardBiometrics.jsx b/client/src/components/Card/CardBiometrics.jsx new file mode 100644 index 0000000..49a913e --- /dev/null +++ b/client/src/components/Card/CardBiometrics.jsx @@ -0,0 +1,16 @@ +import React from 'react' +import styles from './CardBiometrics.module.css' +import SubmitButton from '../SubmitButton/SubmitButton' + +const CardBiometrics = ({ title, image }) => { + return ( + <> + <div className={styles.card}> + <img className={styles.card__image} src={image} alt="" /> + </div> + <SubmitButton /> + </> + ) +} + +export default CardBiometrics |