mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-02 14:03:06 +00:00
20 lines
246 B
Swift
20 lines
246 B
Swift
|
|
//
|
||
|
|
// WakuExampleApp.swift
|
||
|
|
// WakuExample
|
||
|
|
//
|
||
|
|
// SwiftUI app entry point for Waku iOS example
|
||
|
|
//
|
||
|
|
|
||
|
|
import SwiftUI
|
||
|
|
|
||
|
|
@main
|
||
|
|
struct WakuExampleApp: App {
|
||
|
|
var body: some Scene {
|
||
|
|
WindowGroup {
|
||
|
|
ContentView()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
|