import React from "react"; import { useAppSelector } from "../../utils/hooks"; const Alert = () => { const alerts = useAppSelector((state) => state.alert); return (
{alerts.map((alert) => (
{alert.msg}
))}
); }; export default Alert;