Files
Campus-Plug/frontend/src/pages/Transactions.jsx

9 lines
160 B
React
Raw Normal View History

2025-04-14 12:09:06 -06:00
import { useState } from "react";
import { Link } from "react-router-dom";
2025-03-05 22:30:52 -07:00
const Transactions = () => {
2025-04-14 12:09:06 -06:00
return <div></div>;
2025-03-05 22:30:52 -07:00
};
2025-04-14 12:09:06 -06:00
export default Transactions;