import Recording import SwiftUI /// The root view of the Attendi sample app. /// /// The view hosts the `RecordingView` feature from the `Recording` target of the `Features` package, which drives the whole recording flow. struct ContentView: View { // MARK: Body /// The content of the view: the recording feature's view, attached to the microphone-backed recording service and the on-device speech transcribing service. var body: some View { RecordingView( recorder: AudioRecordingService(), transcriber: AudioTranscribingService() ) } } // MARK: - Previews #Preview( "Content view" ) { ContentView() }