| 4 | import Input from '../Common/Input'; |
| 5 | |
| 6 | interface SchemaField { |
| 7 | name: string; |
| 8 | type: string; |
| 9 | description: string; |
| 10 | } |
| 11 | |
| 12 | const SchemaEditor: React.FC = () => { |
| 13 | const { currentPipeline, updatePipeline } = usePipelineStore(); |
nothing calls this directly
no outgoing calls
no test coverage detected