mirror of
https://github.com/discourse/discourse.git
synced 2024-12-13 01:13:39 +08:00
e4c373194d
This commit refactors the Wizard component code in preparation for moving it to the 'static' directory for Embroider route-splitting. It also includes a number of general improvements and simplifications. Extracted from https://github.com/discourse/discourse/pull/23678 Co-authored-by: Godfrey Chan <godfreykfc@gmail.com>
16 lines
371 B
JavaScript
16 lines
371 B
JavaScript
import Checkbox from "./checkbox";
|
|
import Checkboxes from "./checkboxes";
|
|
import Dropdown from "./dropdown";
|
|
import Image from "./image";
|
|
import StylingPreview from "./styling-preview";
|
|
import Text from "./text";
|
|
|
|
export default {
|
|
checkbox: Checkbox,
|
|
checkboxes: Checkboxes,
|
|
"styling-preview": StylingPreview,
|
|
dropdown: Dropdown,
|
|
image: Image,
|
|
text: Text,
|
|
};
|