mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-04-28 05:46:22 +00:00
18 lines
277 B
Swift
18 lines
277 B
Swift
//
|
|
// MeetingsView.swift
|
|
// Linphone
|
|
//
|
|
// Created by QuentinArguillere on 18/04/2024.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct MeetingsView: View {
|
|
var body: some View {
|
|
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
MeetingsView()
|
|
}
|