mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
12 lines
426 B
JavaScript
12 lines
426 B
JavaScript
import LayoutBase from './LayoutBase'
|
||
import BlogPostListScroll from './components/BlogPostListScroll'
|
||
|
||
export const LayoutTag = (props) => {
|
||
const { tag } = props
|
||
const slotTop = <div className='flex items-center font-sans p-8'><div className='text-xl'><i className='mr-2 fas fa-tag'/>标签:</div>{tag}</div>
|
||
|
||
return <LayoutBase {...props} slotTop={slotTop}>
|
||
<BlogPostListScroll {...props} />
|
||
</LayoutBase>
|
||
}
|