mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
c67f626b66
Co-authored-by: John Wang <takatost@gmail.com> Co-authored-by: Jyong <718720800@qq.com> Co-authored-by: 金伟强 <iamjoel007@gmail.com>
9 lines
160 B
TypeScript
9 lines
160 B
TypeScript
import React from 'react'
|
|
import AppList from '@/app/components/explore/app-list'
|
|
|
|
const Apps = () => {
|
|
return <AppList />
|
|
}
|
|
|
|
export default React.memo(Apps)
|