18 lines
309 B
TypeScript
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;
|