10 lines
175 B
TypeScript
10 lines
175 B
TypeScript
|
|
export const metadata = {
|
||
|
|
title: "Communication",
|
||
|
|
};
|
||
|
|
|
||
|
|
const Layout = ({ children }: { children: React.ReactNode }) => {
|
||
|
|
return <>{children}</>;
|
||
|
|
};
|
||
|
|
|
||
|
|
export default Layout;
|