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