CollectionView 에서 RxDataSources를 쓰려면 우선 CellModel : Cell에 들어갈 데이터 구조SectionModel : RxDataSources가 요구하는 구조, 섹션의 데이터 구조ViewModel : 비즈니스 로직CollectionViewCell : Cell UIViewController : CollectionVeiw UI 가 필요하다 CellModel에서는 Cell에 들어가는 데이터 구조를 먼저 정의해준다.import Foundationstruct Beach { let name: String let imageName: String let temperature: String let weatherStatus: String} SectionModel에서는 R..