mirror of
https://github.com/langgenius/dify.git
synced 2026-03-25 21:23:51 +08:00
9 lines
163 B
TypeScript
9 lines
163 B
TypeScript
import AppList from "@/app/components/explore/app-list"
|
|
import React from 'react'
|
|
|
|
const Apps = ({ }) => {
|
|
return <AppList />
|
|
}
|
|
|
|
export default React.memo(Apps)
|