mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-16 07:26:47 +00:00
18 lines
309 B
JavaScript
18 lines
309 B
JavaScript
import SearchInput from './SearchInput'
|
|
import Tags from './Tags'
|
|
|
|
/**
|
|
* 搜索页面上方嵌入内容
|
|
* @param {*} props
|
|
* @returns
|
|
*/
|
|
export default function SearchNavBar(props) {
|
|
return (<>
|
|
<div className='pb-12'>
|
|
<SearchInput {...props} />
|
|
</div>
|
|
|
|
<Tags {...props}/>
|
|
</>)
|
|
}
|