Ejemplo n.º 1
0
        private void Render(TinyCounterModel state)
        {
            var h    = new VGridBuilder();
            var body = new TinyCounterView(state, h).Render();
            var grid = h.Finish().WithBody(body);

            _gridProvider.Render(grid);
        }
Ejemplo n.º 2
0
 public TinyCounterView(TinyCounterModel model, VGridBuilder h)
 {
     _model = model;
     _h     = h;
 }