blog.hangerthem.com/app/(withRecent)/layout.tsx
2026-08-03 16:35:58 +02:00

10 lines
247 B
TypeScript

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