mirror of
https://github.com/lumaa-dev/BubbleApp.git
synced 2024-12-12 17:36:31 +01:00
14 lines
196 B
Swift
14 lines
196 B
Swift
//Made by Lumaa
|
|
|
|
import SwiftUI
|
|
|
|
struct AccountRow: View {
|
|
var body: some View {
|
|
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
AccountRow()
|
|
}
|