import BlogPostListScroll from './components/BlogPostListScroll' import BlogPostListPage from './components/BlogPostListPage' import LayoutBase from './LayoutBase' import BLOG from '@/blog.config' import Link from 'next/link' import HeaderArticle from './components/HeaderArticle' export const LayoutCategory = props => { const { category, categoryOptions } = props return ( } >
{categoryOptions.map(e => { const selected = e.name === category return (
{e.name}({e.count})
) })}
{BLOG.POST_LIST_STYLE === 'page' ? : }
) }