mirror of
https://github.com/langgenius/dify.git
synced 2026-02-09 23:20:12 -05:00
19 lines
525 B
TypeScript
19 lines
525 B
TypeScript
import { useTranslation } from '#i18n'
|
|
import Form from '@/app/components/datasets/settings/form'
|
|
|
|
const Settings = () => {
|
|
const { t } = useTranslation('datasetSettings')
|
|
|
|
return (
|
|
<div className="h-full overflow-y-auto">
|
|
<div className="flex flex-col gap-y-0.5 px-6 pb-2 pt-3">
|
|
<div className="system-xl-semibold text-text-primary">{t('title')}</div>
|
|
<div className="system-sm-regular text-text-tertiary">{t('desc')}</div>
|
|
</div>
|
|
<Form />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Settings
|