blog.hangerthem.com/app/(withRecent)/layout.tsx
2026-08-03 12:33:39 +02:00

10 lines
249 B
TypeScript

import { RecentlyUpdatedPosts } from '@/components/common/RecentlyUpdatedPosts'
export default function WithRecentLayout({ children }: { children: React.ReactNode }) {
return (
<>
{children}
<RecentlyUpdatedPosts />
</>
)
}