Files
AthonetTools/static/js/wizard/steps.js

11 lines
304 B
JavaScript

// static/js/graph/wizard/steps.js
import { mountTargetControls } from './step0_target.js';
import { mountStep2Render } from './step2_render.js';
import { mountStep3Deploy } from './step3_deploy.js';
export function mountWizard() {
mountTargetControls();
mountStep2Render();
mountStep3Deploy();
}