Perplexica/ui/app/library/layout.tsx

13 lines
266 B
TypeScript
Raw Normal View History

2024-06-29 11:09:51 +05:30
import { Metadata } from 'next';
import React from 'react';
export const metadata: Metadata = {
2025-02-02 12:14:15 +02:00
title: 'Library - gochat247 - aibot',
2024-06-29 11:09:51 +05:30
};
const Layout = ({ children }: { children: React.ReactNode }) => {
return <div>{children}</div>;
};
export default Layout;