-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/wizard #127
base: master
Are you sure you want to change the base?
Feature/wizard #127
Conversation
@@ -1,6 +1,10 @@ | |||
export default class Module { | |||
constructor(app, name) { | |||
this.App = app; | |||
this.Name = name; | |||
this.Config = app?.config; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@titkov49 Why do you need to define Config, Navigation and Router in here? Also, I think it should be without ?
. Also, be patient with the indentation on line 6 and 7
import json from './mock-data.json'; | ||
|
||
const WizardContainer = (props) => { | ||
console.log(json) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@titkov49 Here is some forgotten console.log
constructor (app) { | ||
super(app, "WizardModule"); | ||
|
||
console.log("WizardModule: ", this); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@titkov49 Here is some forgotten console.log
@@ -0,0 +1,119 @@ | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@titkov49 Do we need mocked data in the modules/wizard
? It might be better, if it would be a part of documentation or better - the public
folder
Continuing to work on asab-webui wizard. Created new module for Wizard