Files
ios-study/jason/Views/Home/HomeView.swift
2024-01-16 22:55:44 +08:00

25 lines
363 B
Swift

//
// ContentView.swift
// jason
//
// Created by Jason on 2024/1/16.
//
import SwiftUI
import SwiftData
struct HomeView: View {
var body: some View {
ScrollView{
VStack(alignment: .leading, content: {
UserCardComponent()
})
}
.background(Color.orange)
}
}
#Preview {
HomeView()
}