UNPKG

@fleek-platform/agents-ui

Version:

The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward

11 lines (10 loc) 307 B
import type React from 'react'; interface FileEditorProps { fileContent?: string; onValidation?: (valid: boolean) => void; fileType: 'json' | 'env'; className?: string; onChange: (value?: string) => void; } declare const FileEditor: React.FC<FileEditorProps>; export default FileEditor;