14 lines
268 B
Swift
14 lines
268 B
Swift
import SwiftUI
|
|
|
|
struct InsertableItemsView: View {
|
|
|
|
var body: some View {
|
|
HStack {
|
|
Text("Commands")
|
|
.font(.headline)
|
|
InsertableView<InsertableImage>()
|
|
InsertableView<InsertableLabels>()
|
|
}
|
|
}
|
|
}
|