mirror of
https://github.com/SagerNet/sing-box-for-apple.git
synced 2026-06-03 11:37:44 +00:00
15 lines
271 B
Swift
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
|
|
)
|
|
}
|
|
}
|