1
0

Sidebar.Project.js 537 B

123456789101112131415161718192021
  1. import { UISpan } from './libs/ui.js';
  2. import { SidebarProjectApp } from './Sidebar.Project.App.js';
  3. import { SidebarProjectRenderer } from './Sidebar.Project.Renderer.js';
  4. import { SidebarProjectResources } from './Sidebar.Project.Resources.js';
  5. function SidebarProject( editor ) {
  6. const container = new UISpan();
  7. container.add( new SidebarProjectRenderer( editor ) );
  8. container.add( new SidebarProjectApp( editor ) );
  9. container.add( new SidebarProjectResources( editor ) );
  10. return container;
  11. }
  12. export { SidebarProject };
粤ICP备19079148号