web-humas-fe/app/news/all/layout.tsx

10 lines
134 B
TypeScript
Raw Normal View History

2024-12-17 10:19:52 +00:00
"use client";
2024-03-07 03:33:43 +00:00
export default function AllNewsLayout({
2024-11-05 06:15:40 +00:00
children,
2024-03-07 03:33:43 +00:00
}: {
2024-11-05 06:15:40 +00:00
children: React.ReactNode;
2024-03-07 03:33:43 +00:00
}) {
return <>{children}</>;
2024-03-07 03:33:43 +00:00
}