Files
bodyshop/client/src/components/alert/alert.component.jsx

9 lines
275 B
JavaScript

import { Alert } from "antd";
import React from "react";
import { logImEXEvent } from "../../firebase/firebase.utils";
export default function AlertComponent(props) {
if (props.type === "error") logImEXEvent("alert_render", { ...props });
return <Alert {...props} />;
}