Skip to content

Instantly share code, notes, and snippets.

View dominsights's full-sized avatar
🎯
Focusing

Dom dominsights

🎯
Focusing
View GitHub Profile
@SahanAmarsha
SahanAmarsha / Footer.tsx
Created March 15, 2022 18:00
Example Footer component.
@lievendoclo
lievendoclo / presenter.kt
Last active October 27, 2023 18:21
Presenter in Clean Architecture
// shared datastructures
data class ResponseModel(val value: String)
data class JsonResponse(val jsonValue: String)
// example 1
interface FooUseCase {
fun <T> T doSomething(presenter: (ResponseModel -> T))
}