/* .... */
birComponent.init(metin: "test", altAciklama: "best")
/* .... */
struct birComponent: View{
var metin : String
var altAciklama : String
var body: some View{
HStack{
Text("Kişisel Bilgiler")
Spacer()
Text("Zorunlu")
}
}
}