mirror of
https://github.com/langgenius/dify.git
synced 2026-05-22 01:48:39 +08:00
12 lines
320 B
TypeScript
12 lines
320 B
TypeScript
import * as React from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import FilterEmptyState from '@/app/components/base/filter-empty-state'
|
|
|
|
const Empty = () => {
|
|
const { t } = useTranslation()
|
|
|
|
return <FilterEmptyState title={t('filterEmpty.noApps', { ns: 'app' })} />
|
|
}
|
|
|
|
export default React.memo(Empty)
|