discourse/app/assets/javascripts/wizard/addon/components/fields/index.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
371 B
JavaScript
Raw Normal View History

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,
};