10 lines
280 B
TypeScript
10 lines
280 B
TypeScript
import { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Customer Chats | Ember Market",
|
|
description: "Manage your customer conversations",
|
|
};
|
|
|
|
export default function ChatsLayout({ children }: { children: React.ReactNode }) {
|
|
return <>{children}</>;
|
|
}
|