2025-08-12 10:25:18 +05:30

18 lines
309 B
TypeScript

import ListOfEvents from '@/components/gallery/ListOfEvents';
import { Metadata } from 'next';
import React from 'react';
export const metadata: Metadata = {
title: 'Sales Admin',
};
const Sales = () => {
return (
<>
<ListOfEvents />
</>
);
};
export default Sales;