Build
tickets
Is that achievable in 24 hours?
No.
Don't implement any of the domain logic or data logic.
Build purely the view of a ticket with
no binding to any business logic.
a.k.a Fewer heroes, higher productivity.
Sometimes components are built by one 80 hour week working dev.
By decoupling the different layers we can build components as teams.
Build components in separate layers.
Build view as dumb functions of domain model state.
Build small, single purpose components.
view = f(data)
...
newView = f(newData)
By briandipalma