So in one place you'd do `scope.put(someModel)` an...
# tornadofx
e
So in one place you'd do
scope.put(someModel)
and then you can access that from a component in the same scope by doing either
find<SomeModel>()
or
val someModel: SomeModel by inject()
.