import React from 'react'; import { Text, View } from 'react-native'; import { getEditorTabLabel } from '../settings/featureMenu'; import { editorShellStyles } from './editorShellStyles'; import type { SuperagentEditorTab } from '../../types'; export function EditorTabPanel({ tab }: { tab: SuperagentEditorTab }) { const label = getEditorTabLabel(tab); return ( {label} This section now lives inside the native settings modal. ); }