chore: disabled logic
parent
17a908fac1
commit
079d0f786d
@ -0,0 +1,18 @@
|
||||
'use client'
|
||||
import type { FC } from 'react'
|
||||
import React from 'react'
|
||||
|
||||
type Props = {
|
||||
appId: string
|
||||
}
|
||||
|
||||
const LastRun: FC<Props> = ({
|
||||
appId,
|
||||
}) => {
|
||||
return (
|
||||
<div>
|
||||
last run: {appId}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
export default React.memo(LastRun)
|
||||
Loading…
Reference in New Issue