(props: Props)
| 31 | } |
| 32 | |
| 33 | function BlogListPageContent(props: Props): JSX.Element { |
| 34 | const { metadata, items, sidebar } = props; |
| 35 | return ( |
| 36 | <BlogLayout sidebar={sidebar}> |
| 37 | <BlogPostItems items={items} /> |
| 38 | <BlogListPaginator metadata={metadata} /> |
| 39 | </BlogLayout> |
| 40 | ); |
| 41 | } |
| 42 | |
| 43 | export default function BlogListPage(props: Props): JSX.Element { |
| 44 | React.useEffect(() => { |
nothing calls this directly
no outgoing calls
no test coverage detected