mirror of
https://github.com/langgenius/dify.git
synced 2026-05-06 02:18:08 +08:00
feat: type config
This commit is contained in:
@ -0,0 +1,19 @@
|
||||
'use client'
|
||||
import type { FC } from 'react'
|
||||
import React from 'react'
|
||||
import type { AutoUpdateConfig } from './types'
|
||||
|
||||
type Props = {
|
||||
payload: AutoUpdateConfig
|
||||
}
|
||||
|
||||
const AutoUpdateSetting: FC<Props> = ({
|
||||
payload,
|
||||
}) => {
|
||||
console.log(payload)
|
||||
return (
|
||||
<div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
export default React.memo(AutoUpdateSetting)
|
||||
Reference in New Issue
Block a user