Files
standardnotes-app-web/app/assets/javascripts/Components/DeallocateHandler/DeallocateHandler.tsx
2022-05-30 12:42:52 +05:30

18 lines
398 B
TypeScript

import { WebApplication } from '@/UIModels/Application'
import { observer } from 'mobx-react-lite'
import { FunctionComponent } from 'react'
type Props = {
application: WebApplication
}
const DeallocateHandler: FunctionComponent<Props> = ({ application, children }) => {
if (application.dealloced) {
return null
}
return <>{children}</>
}
export default observer(DeallocateHandler)