mirror of
https://github.com/langgenius/dify.git
synced 2026-01-30 07:32:45 +08:00
9 lines
165 B
TypeScript
9 lines
165 B
TypeScript
import * as React from 'react'
|
|
import AppList from '@/app/components/explore/app-list'
|
|
|
|
const Apps = () => {
|
|
return <AppList />
|
|
}
|
|
|
|
export default React.memo(Apps)
|