Skip to content

Commit

Permalink
feat: Implemented FaceRecognition
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelymh committed Jun 22, 2022
1 parent 7b408ce commit 1c637aa
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/components/FaceRecognition/FaceRecognition.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import React from 'react';

const FaceRecognition = ({ imageUrl }) => {
return (
<div className='center ma'>
<div className='absolute mt2'>
<img src={imageUrl} alt="" width='500px' height='auto' />
</div>
</div>
);
}

export default FaceRecognition;

0 comments on commit 1c637aa

Please sign in to comment.