Skip to content

Commit

Permalink
added scanner
Browse files Browse the repository at this point in the history
  • Loading branch information
babitarit committed Mar 13, 2024
1 parent ac3bf90 commit 9c915ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
File renamed without changes
5 changes: 3 additions & 2 deletions src/components/shared/Register/UPI.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import Paragraph from '../typography/Paragraph';
import { UPIdata } from '../../../data/Paymentdata';
// import '../../../assets/images/Scanner.png';
import ScannerImage from '../../../assets/images/Scanner.png';

export default function UPI() {
return (
<>
Expand All @@ -12,7 +13,7 @@ export default function UPI() {
{item}
</Paragraph>
))}
{/* <img src='Scanner.png' alt='Scannerimage' className='w-64 h-64 object-cover' /> */}
<img src={ScannerImage} alt='Scannerimage' className='w-64 h-64 object-cover' />
{UPIdata.slice(1).map((item, index) => (
<Paragraph variant='body3' key={index} className='text-center lg:mb-4'>
{item}
Expand Down

0 comments on commit 9c915ad

Please sign in to comment.