struct ContentView: View {
   @State private var text: String = ""

   var body: some View {
      TextEditor(text: $text)
  }
}