Updated on 2026-08-14

This commit is contained in:
Tangem 2024-11-27 12:06:20 +03:00
parent 12146c8981
commit 3e48a9ce0e
20 changed files with 402 additions and 17 deletions

View file

@ -1,6 +1,6 @@
package com.tangem.features.managetokens.component
import com.tangem.core.decompose.factory.ComponentFactory
import com.tangem.core.decompose.context.AppComponentContext
import com.tangem.core.ui.decompose.ComposableContentComponent
import com.tangem.domain.wallets.models.UserWalletId
@ -8,5 +8,7 @@ interface OnboardingManageTokensComponent : ComposableContentComponent {
data class Params(val userWalletId: UserWalletId)
interface Factory : ComponentFactory<Params, OnboardingManageTokensComponent>
interface Factory {
fun create(context: AppComponentContext, params: Params, onDone: () -> Unit): OnboardingManageTokensComponent
}
}