Exemplo n.º 1
0
 public ReactRouterComponent(
     ReactConfiguration configuration,
     IReactIdGenerator reactIdGenerator,
     INodeInvocationService _nodeInvocationService,
     IComponentNameInvalidator componentNameInvalidator) : base(
     configuration,
     reactIdGenerator,
     _nodeInvocationService,
     componentNameInvalidator)
 {
 }
Exemplo n.º 2
0
        protected ReactBaseComponent(
            ReactConfiguration configuration,
            IReactIdGenerator reactIdGenerator,
            INodeInvocationService nodeInvocationService,
            IComponentNameInvalidator componentNameInvalidator)
        {
            _configuration            = configuration;
            _reactIdGenerator         = reactIdGenerator;
            _componentNameInvalidator = componentNameInvalidator;
            _nodeInvocationService    = nodeInvocationService;

            ExceptionHandler = _configuration.ExceptionHandler;
        }