How to register webix file manager in webix.ui inside react app

im using webix pro and get @xbs/filemanager and @xbs/webix-pro from npm, but cannot register file manager inside webix ui in react, get unknown view:filemanager, please help.

Hi @Vitalii_Kulchytskyi ,

Usually, the main issue is to make webix global - this is the main requirement for complex widgets and for some core Webix features.

There’s an example of how to use complex widgets (namely, File Manager) in React apps:

The main demo is implemented with class-based components.

If you prefer function components in React, please check the code in the related branch:

It uses the global import (1st option described in readme)

1 Like

That what i need, thank you!