You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gcgj-dify-1.7.0/web/app/components/plugins/marketplace/header/index.tsx

21 lines
502 B
TypeScript

import Description from '../description'
import DescriptionWrapper from '../description/wrapper'
import SearchBoxWrapper from '../search-box/wrapper'
import PluginTypeSwitch from '../plugin-type-switch'
const Header = () => {
return (
<>
<DescriptionWrapper>
<Description />
</DescriptionWrapper>
<div className='flex items-center justify-center mt-[15px] mb-4'>
<SearchBoxWrapper />
</div>
<PluginTypeSwitch />
</>
)
}
export default Header