struct ContentView: View {
@State var isExpanded: Bool = false
var body: some View {
DisclosureGroup("Planets", isExpanded: $isExpanded) {
Text("Mecury")
Text("Venus")
Text("Earth")
}
}
}