View Builder
View Builder
```
struct ContentView: View {
var body: some View {
Group { }
}
}
```

For example, in the following piece of code, we get just the one
view on screen.
```
struct ContentView: View {
var body: some View {
Group {
Text("I am all alone ")
}
}
}
```
