| 123456789101112131415161718 |
- //
- // EmojiDataSource.swift
- // LoopKitUI
- //
- // Created by Michael Pangburn on 1/7/19.
- // Copyright © 2019 LoopKit Authors. All rights reserved.
- //
- struct EmojiSection {
- let title: String
- let items: [String]
- let indexSymbol: String
- }
- protocol EmojiDataSource {
- var sections: [EmojiSection] { get }
- }
|