19 lines
255 B
Swift
19 lines
255 B
Swift
//
|
|
// RippleChatApp.swift
|
|
// RippleChat
|
|
//
|
|
// Created by Sebastian Lenzlinger on 05.07.23.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct RippleChatApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
|
|
}
|
|
}
|
|
}
|