import React from 'react'; import { FormattedMessage } from 'react-intl'; import { Card, CardBody, Stack, Text } from './ui'; interface MissingIndicatorProps { nested?: boolean } const MissingIndicator = ({ nested = false }: MissingIndicatorProps): JSX.Element => ( ); export default MissingIndicator;