summaryrefslogtreecommitdiff
path: root/frontend/app/views/tile/forms/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/app/views/tile/forms/index.js')
-rw-r--r--frontend/app/views/tile/forms/index.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/frontend/app/views/tile/forms/index.js b/frontend/app/views/tile/forms/index.js
new file mode 100644
index 0000000..8225365
--- /dev/null
+++ b/frontend/app/views/tile/forms/index.js
@@ -0,0 +1,29 @@
+import { TILE_CONSTRUCTORS } from './tile.constructors'
+
+import TileImageForm from './tile.form.element.image'
+import TileLinkForm from './tile.form.element.link'
+import TileTextForm from './tile.form.element.text'
+import TileGradientForm from './tile.form.element.gradient'
+import TileScriptForm from './tile.form.element.script'
+import TileVideoForm from './tile.form.element.video'
+
+import TileHyperlinkForm from './tile.form.hyperlink'
+import TileMiscForm from './tile.form.misc'
+import TileSoundForm from './tile.form.sound'
+import TileTypeForm from './tile.form.type'
+
+export {
+ TILE_CONSTRUCTORS,
+
+ TileImageForm,
+ TileLinkForm,
+ TileTextForm,
+ TileGradientForm,
+ TileScriptForm,
+ TileVideoForm,
+
+ TileHyperlinkForm,
+ TileMiscForm,
+ TileSoundForm,
+ TileTypeForm,
+}