mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-07-08 03:11:49 +08:00
21 lines
513 B
TypeScript
21 lines
513 B
TypeScript
import { MarketplaceContextProvider } from './context'
|
|
import Description from './description'
|
|
import IntersectionLine from './intersection-line'
|
|
import SearchBox from './search-box'
|
|
import PluginTypeSwitch from './plugin-type-switch'
|
|
import List from './list'
|
|
|
|
const Marketplace = () => {
|
|
return (
|
|
<MarketplaceContextProvider>
|
|
<Description />
|
|
<IntersectionLine />
|
|
<SearchBox />
|
|
<PluginTypeSwitch />
|
|
<List />
|
|
</MarketplaceContextProvider>
|
|
)
|
|
}
|
|
|
|
export default Marketplace
|