"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.ResponseSection = void 0; var _react = _interopRequireDefault(require("react")); var _response_button = require("./response_button"); var _expandable_section = require("./expandable_section"); var _test_ids = require("./test_ids"); var _translations = require("./translations"); /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ /** * Most bottom section of the overview tab. It contains a summary of the response tab. */ const ResponseSection = ({ expanded = false }) => { return /*#__PURE__*/_react.default.createElement(_expandable_section.ExpandableSection, { expanded: expanded, title: _translations.RESPONSE_TITLE, "data-test-subj": _test_ids.RESPONSE_SECTION_TEST_ID }, /*#__PURE__*/_react.default.createElement(_response_button.ResponseButton, null)); }; exports.ResponseSection = ResponseSection; ResponseSection.displayName = 'ResponseSection';