Preliminary Structure

This commit is contained in:
Adwit Mukherji
2024-10-25 17:56:44 +01:00
parent dd5cb98c36
commit 190be48ab0
4 changed files with 124 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
import { Ticket } from 'lucide-react';
import TicketListings from './TicketListings';
export default function Page() {
return (
<>
<TicketListings />
</>
);
}