File size: 400 Bytes
1b72d7e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
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>
)
}
|