mirror of
https://github.com/0xShay/ticketchain.git
synced 2026-01-11 21:23:24 +00:00
11 lines
178 B
TypeScript
11 lines
178 B
TypeScript
import { Ticket } from 'lucide-react';
|
|
import TicketListings from './TicketListings';
|
|
|
|
export default function Page() {
|
|
return (
|
|
<>
|
|
<TicketListings />
|
|
</>
|
|
);
|
|
}
|