import React from 'react'; import { LocalizerType } from '../types/Util'; interface PropsType { hasExpired: boolean; i18n: LocalizerType; } export const ExpiredBuildDialog = ({ hasExpired, i18n, }: PropsType): JSX.Element | null => { if (!hasExpired) { return null; } return (
); };