import React, { useState, useEffect } from 'react';
import {Alert} from "antd";

export default ({ styles, attributes, callBack, input }: any) => {

    try {
        return (
            <Alert {...attributes} />
        );
    } catch (e) {
        console.log('DEMO-Exception', e);
    }
    return null
}

