view LazyBear/Models/ThemeModel.swift @ 165:125d268db489

Update UI
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Fri, 19 Feb 2021 20:25:06 +0100
parents
children 82cd1042a72f
line wrap: on
line source

//
//  ThemeModel.swift
//  LazyBear
//
//  Created by Dennis Concepción Martín on 19/2/21.
//

import SwiftUI

struct ThemeModel: View {
    var body: some View {
        Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
    }
}

struct ThemeModel_Previews: PreviewProvider {
    static var previews: some View {
        ThemeModel()
    }
}