class-profile-2023/app/lifestyle-and-interests/layout.tsx

8 lines
242 B
TypeScript

import { title } from "@/utils/title";
import React, { PropsWithChildren } from "react";
export const metadata = title("Lifestyle & Interests");
const Layout: React.FC<PropsWithChildren> = ({ children }) => children;
export default Layout;