blob: e8aac4dbc91951b4e49ce9b9848804e901796ae2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//
// H__appenApp.swift
// Hæ-appen
//
// Created by Ivar Løvlie on 16/09/2025.
//
import SwiftUI
@main
struct HaeappenApp: App {
var body: some Scene {
WindowGroup {
TabBarView()
}
}
}
|