var body: some View {
    Form{
        Text("Hello, World")
    }
}
At this code, what this code
 Form{ Text("Hello, World") }
means? Is this creating an instance of the 'Struct Form'? or is it creating an instance of 'Struct Form' and just adding a closure? or do I have to just call it function builder?
 
    