flex-ivr-reporting
Version:
Analyzes Twilio Flex IVR call flows to identify drop-off points and user hang-ups, helping teams pinpoint where callers disengage in the experience.
11 lines (10 loc) • 736 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const react_1 = __importDefault(require("react"));
const flex_ui_1 = require("@twilio/flex-ui");
const Feedback_1 = __importDefault(require("@material-ui/icons/Feedback"));
const ReportingSideLink = ({ onClick, showLabel = true, activeView }) => (react_1.default.createElement(flex_ui_1.SideLink, { icon: react_1.default.createElement(Feedback_1.default, null), isActive: activeView === 'reporting', onClick: onClick, showLabel: showLabel, key: "ReportingSideLink" }, "Reporting"));
exports.default = ReportingSideLink;