view LazyBear/Functions/Normalize.swift @ 177:235ee168a9c3

Fix URL encoding bug clean company search list
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Sun, 21 Feb 2021 17:38:02 +0100
parents
children 0df6396f7e28
line wrap: on
line source

//
//  Normalize.swift
//  LazyBear
//
//  Created by Dennis Concepción Martín on 20/2/21.
//

import SwiftUI

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

struct Normalize_Previews: PreviewProvider {
    static var previews: some View {
        Normalize()
    }
}