In the beta docs: ``` module { // scoped defin...
# koin
t
In the beta docs:
Copy code
module {
    // scoped definition not tied to any scope
    // can be injected in any scope instance
    scoped { ComponentC() }
}
Though when I try to get
ComponentC
using
currentScope
, I am getting following error:
Copy code
Caused by: org.koin.core.error.NoScopeDefinitionFoundException: No scope definition found for scopeName 'com.example.MyActivity'