mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 15:09:22 +00:00
19 lines
400 B
JavaScript
19 lines
400 B
JavaScript
import SearchInput from './SearchInput'
|
|
import Tags from './Tags'
|
|
|
|
/**
|
|
* 搜索页面上方嵌入内容
|
|
* @param {*} props
|
|
* @returns
|
|
*/
|
|
export default function SearchNavBar(props) {
|
|
return (
|
|
<div className='max-w-7xl w-full mx-auto'>
|
|
<div className='py-12'>
|
|
<SearchInput {...props} />
|
|
</div>
|
|
<Tags {...props} />
|
|
</div>
|
|
)
|
|
}
|