import React from 'react'; import intl from 'panel/common/intl'; import { StatusBlock } from './StatusBlock'; import s from './styles.module.pcss'; type Props = { type: 'warning' | 'error'; message: string; }; export const ValidationStatus = ({ type, message }: Props) => (
{message}
);