mirror of
https://github.com/langgenius/dify.git
synced 2026-05-04 01:18:05 +08:00
29 lines
1.1 KiB
TypeScript
29 lines
1.1 KiB
TypeScript
import * as React from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { useDocLink } from '@/context/i18n'
|
|
|
|
const NoLinkedAppsPanel = () => {
|
|
const { t } = useTranslation()
|
|
const docLink = useDocLink()
|
|
|
|
return (
|
|
<div className="w-[240px] rounded-xl border-[0.5px] border-components-panel-border bg-components-panel-bg-blur p-4">
|
|
<div className="inline-flex rounded-lg border-[0.5px] border-components-panel-border-subtle bg-background-default-subtle p-2">
|
|
<span className="i-ri-apps-2-add-line size-4 text-text-tertiary" />
|
|
</div>
|
|
<div className="my-2 text-xs text-text-tertiary">{t('datasetMenus.emptyTip', { ns: 'common' })}</div>
|
|
<a
|
|
className="mt-2 inline-flex cursor-pointer items-center text-xs text-text-accent"
|
|
href={docLink('/use-dify/knowledge/integrate-knowledge-within-application')}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<span className="i-ri-book-open-line mr-1 size-4 text-text-accent" />
|
|
{t('datasetMenus.viewDoc', { ns: 'common' })}
|
|
</a>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default React.memo(NoLinkedAppsPanel)
|