Perplexica/ui/app/news/layout.tsx

12 lines
255 B
TypeScript
Raw Normal View History

2024-07-08 16:20:56 +08:00
import { Metadata } from "next";
import React from "react";
export const metadata: Metadata = {
title: "News - Perplexica",
};
const Layout = ({ children }: { children: React.ReactNode }) => {
return <div>{children}</div>;
};
export default Layout;