Bubble/Threaded/Components/AccountRow.swift
2024-02-20 20:57:07 +01:00

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()
}