mastodon-ios/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentView.swift

19 lines
274 B
Swift

//
// ComposeContentView.swift
//
//
// Created by MainasuK on 22/9/30.
//
import SwiftUI
public struct ComposeContentView: View {
public var body: some View {
ScrollView {
VStack {
Text("Hello")
}
}
}
}