import { WarningAlert } from '../../../../common/components/atoms/WarningAlert'; import React, { FunctionComponent } from 'react'; import { IAlertProps } from './interfaces'; export const Alert: FunctionComponent = ({ value }) => ( {value} );