Files
sing-box-for-apple/MacLibrary/GhosttyConfigEditorWrapperView.swift
2026-05-25 13:28:53 +08:00

15 lines
271 B
Swift

import CodeEditLanguages
import SwiftUI
struct GhosttyConfigEditorWrapperView: View {
@Binding var text: String
var body: some View {
CodeEditTextView(
text: $text,
isEditable: true,
language: .toml
)
}
}