12 lines
276 B
JavaScript
12 lines
276 B
JavaScript
import { patch } from '@web/core/utils/patch';
|
|
|
|
import { WebClient } from '@web/webclient/webclient';
|
|
import { Sidebar } from '@fusion_backend_theme/webclient/sidebar/sidebar';
|
|
|
|
patch(WebClient, {
|
|
components: {
|
|
...WebClient.components,
|
|
Sidebar,
|
|
},
|
|
});
|