mirror of
https://github.com/kean/Pulse.git
synced 2026-05-30 21:07:33 +00:00
25 lines
426 B
Swift
25 lines
426 B
Swift
//
|
|
// ContentView.swift
|
|
// Pulse tvOS
|
|
//
|
|
// Created by Alexander Grebenyuk on 07.03.2021.
|
|
// Copyright © 2021 kean. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
import PulseUI
|
|
|
|
struct ContentView: View {
|
|
var body: some View {
|
|
NavigationView {
|
|
ConsoleView(store: .demo)
|
|
}
|
|
}
|
|
}
|
|
|
|
struct ContentView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
ContentView()
|
|
}
|
|
}
|