comparison LazyBearWatchOS Extension/Views/Home/Helpers/CompanyRow.swift @ 447:8621ba6fd457

Fixes #48
author Dennis Concepción Martín <dennisconcepcionmartin@gmail.com>
date Wed, 23 Jun 2021 10:54:47 +0200
parents
children bb69f9d1d20f
comparison
equal deleted inserted replaced
446:9cc0455bc46f 447:8621ba6fd457
1 //
2 // CompanyRow.swift
3 // LazyBearWatchOS Extension
4 //
5 // Created by Dennis Concepción Martín on 22/6/21.
6 //
7
8 import SwiftUI
9
10 struct CompanyRow: View {
11 var body: some View {
12 Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
13 }
14 }
15
16 struct CompanyRow_Previews: PreviewProvider {
17 static var previews: some View {
18 CompanyRow()
19 }
20 }