web-humas-fe/app/news/detail/[id]/layout.tsx

8 lines
116 B
TypeScript

export default function NewsLayout({
children,
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}