Files
NotionNext/themes/game/components/SearchNavBar.js
tangly1024.com ff77d30cae init game theme
2024-03-18 18:57:49 +08:00

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}/>
</>)
}