10 lines
192 B
TypeScript
10 lines
192 B
TypeScript
import type { Metadata } from 'next';
|
|
import { UsersPage } from './UsersPage';
|
|
|
|
export default function () {
|
|
return <UsersPage />;
|
|
}
|
|
export const metadata: Metadata = {
|
|
title: 'Users',
|
|
};
|