IceCubesApp/Packages/Account/Sources/Account/AccountView.swift
Thomas Ricouard 567cb4cc47 New Routeur
2022-11-29 11:46:02 +01:00

15 lines
245 B
Swift

import SwiftUI
import Models
public struct AccountView: View {
private let accountId: String
public init(accountId: String) {
self.accountId = accountId
}
public var body: some View {
Text("Account id \(accountId)")
}
}