import * as React from 'react';

import { ChatsPageClient } from './chats-client';

export const metadata = {
  title: 'Chats | Dashboard',
};

export default function Page() {
  return <ChatsPageClient />;
}
