```class MyActicity { val components = Kodein {...
# kodein
p
Copy code
class MyActicity {
   val components = Kodein {
    bind<MyActivity.Presenter>() with singleton { MyActivity.Presenter(instance()) } 
   depends(App.components) // Likeish
}