public List <string> GetComponentsWithTag(string tag)
        {
            var components = _componentRegistryService.GetComponentsWithTag(tag);

            return(components.Select(c => c.Uid).ToList());
        }