dify/web/app/components/plugins/marketplace/index.tsx

21 lines
513 B
TypeScript
Raw Normal View History

2024-10-12 18:02:24 +08:00
import { MarketplaceContextProvider } from './context'
import Description from './description'
import IntersectionLine from './intersection-line'
import SearchBox from './search-box'
import PluginTypeSwitch from './plugin-type-switch'
2024-10-11 16:15:24 +08:00
import List from './list'
2024-10-08 17:57:46 +08:00
2024-10-11 16:15:24 +08:00
const Marketplace = () => {
2024-10-08 17:57:46 +08:00
return (
2024-10-12 18:02:24 +08:00
<MarketplaceContextProvider>
<Description />
<IntersectionLine />
<SearchBox />
<PluginTypeSwitch />
<List />
</MarketplaceContextProvider>
2024-10-08 17:57:46 +08:00
)
}
2024-10-11 16:15:24 +08:00
export default Marketplace