feat: type config

This commit is contained in:
Joel
2025-06-18 15:04:40 +08:00
parent 37f26c412f
commit 42b6524954
6 changed files with 52 additions and 4 deletions

View File

@ -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)