GiphyItemRow.swift 219 B

12345678910111213141516
  1. //
  2. // GiphyItemRow.swift
  3. // LiveLikeGiphyChallenge
  4. //
  5. // Created by Irina Smokvarska on 1/31/22.
  6. //
  7. import SwiftUI
  8. struct GiphyItemRow: View {
  9. let url: URL
  10. var body: some View {
  11. GifImage(url: url)
  12. }
  13. }