Webix Jet : Recommended way to include custom protos

Did there is a recommended way, using Webix Jet, to include custom created ProtoUI ? (I mean with the requireJS architecture)

Thanks,
Fabien

Just include the necessary file in list of dependencies

define([
   "models/some.js",
   "custom/mycomponent.js"
], function(model){
     return {
          view:"mycomponent"
     };
});

Including the dependency will ensure that a custom component code is loaded and can be used with in webix.ui config.