13 lines
260 B
React
13 lines
260 B
React
|
|
import { useState } from 'react';
|
||
|
|
import { Link } from 'react-router-dom';
|
||
|
|
import { Tag, Book, Laptop, Sofa, Utensils, Gift, Heart } from 'lucide-react';
|
||
|
|
|
||
|
|
const Transactions = () => {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default Transactions;
|