15 lines
154 B
Swift
15 lines
154 B
Swift
import SwiftUI
|
|
|
|
public struct Math: View {
|
|
public init() {
|
|
}
|
|
|
|
public var body: some View {
|
|
Text("TODO: implement")
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
Math()
|
|
}
|