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