Files
swiftui-math/Sources/SwiftUIMath/Math.swift
2026-01-01 12:13:22 +01:00

15 lines
154 B
Swift

import SwiftUI
public struct Math: View {
public init() {
}
public var body: some View {
Text("TODO: implement")
}
}
#Preview {
Math()
}