Home > npm Packages > @wq/wizard

@wq/wizard

@wq/wizard is a @wq/app plugin providing a complete React UI for the Django Data Wizard package.

Installation

wq.app for PyPI

When using Django Data Wizard together with wq.app’s wq.js build, update app/js/{project_name}.js to import and register wizard.js, which is provided by data_wizard’s static/app/js directory.

pip install wq.app data-wizard
import wq from './wq.js';
import config from './data/config.js';
import wizard from './wizard.js';

wq.use([wizard]);

wq.init(config).then(...);

@wq/app for npm

When using @wq/app for npm, install and import the @wq/wizard npm package.

npm install @wq/wizard
import app from '@wq/app';
import material from '@wq/material';
import mapgl from '@wq/map-gl';
import wizard from '@wq/wizard';
import config from './config';

app.use([material, mapgl, wizard]);

app.init(config).then(...);