import SwiftUI

struct SignUpView: View {
    var body: some View {
        ScreenView {
            Text(verbatim: "Hello SignUpView!")
                .foregroundStyle(.primary500)
        }
    }
}

#Preview {
    SignUpView()
}
