Files
ticketchain/app/TicketListings/page.tsx
Adwit Mukherji d1c562c8f4 Front end is Good
2024-10-26 00:27:09 +01:00

10 lines
139 B
TypeScript

import TicketListings from './TicketListings';
export default function Page() {
return (
<>
<TicketListings />
</>
);
}