import React from 'react'; import Editor from '@monaco-editor/react'; type Props = { initialText: string; onChange: (change: any) => void; }; export const YamlEditor = ({ initialText, onChange }: Props) => { return ( ); };