Files
got-gaming/app/feedback/layout.tsx

6 lines
149 B
TypeScript

import type { ReactNode } from "react";
export default function FeedbackLayout({ children }: { children: ReactNode }) {
return <>{children}</>;
}