/* * Copyright OpenSearch Contributors * SPDX-License-Identifier: Apache-2.0 */ import React, { Component } from "react"; import { EuiCodeEditor, EuiSpacer, EuiText } from "@elastic/eui"; import { ContentPanel } from "../../../../components/ContentPanel"; interface IndicesProps { sourceIndex: string; targetIndex: string; sourceIndexFilter: string; } export default class Indices extends Component { constructor(props: IndicesProps) { super(props); } render() { const { sourceIndex, targetIndex, sourceIndexFilter } = this.props; return (
Source index
{sourceIndex}
Source index filter
Target index
{targetIndex}
); } }