Add skeleton for MeetingsView MeetingsFragment

This commit is contained in:
QuentinArguillere 2024-04-19 15:34:05 +02:00
parent d21c026bc9
commit 20f7d54c01
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,18 @@
//
// MeetingsFragment.swift
// Linphone
//
// Created by QuentinArguillere on 18/04/2024.
//
import SwiftUI
struct MeetingsFragment: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
#Preview {
MeetingsFragment()
}

View file

@ -0,0 +1,18 @@
//
// 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()
}