mirror of
https://github.com/pointfreeco/swift-composable-architecture.git
synced 2025-12-20 09:11:33 +01:00
12 lines
180 B
Swift
12 lines
180 B
Swift
import SwiftUI
|
|
|
|
struct AboutView: View {
|
|
let readMe: String
|
|
|
|
var body: some View {
|
|
DisclosureGroup("About this case study") {
|
|
Text(template: self.readMe)
|
|
}
|
|
}
|
|
}
|