Perplexica/ui/app/library/layout.tsx

13 lines
259 B
TypeScript
Raw Normal View History

2024-07-05 14:36:50 +08:00
import { Metadata } from "next";
import React from "react";
2024-06-29 11:09:51 +05:30
export const metadata: Metadata = {
2024-07-05 14:36:50 +08:00
title: "Library - Perplexica",
2024-06-29 11:09:51 +05:30
};
const Layout = ({ children }: { children: React.ReactNode }) => {
return <div>{children}</div>;
};
export default Layout;