diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2021-03-31 17:37:40 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2021-03-31 17:37:40 +0200 |
| commit | cda9c115283be8e4e224f6036ba07e5eca243289 (patch) | |
| tree | d0b150bf108813873c7b59cc9f9bd9c00ea3eba7 /frontend/app/views/tile/forms/index.js | |
| parent | a6793f922991d326eeb33cf08b245863218eaef7 (diff) | |
refactor tile forms into own files. add full-width marquee support
Diffstat (limited to 'frontend/app/views/tile/forms/index.js')
| -rw-r--r-- | frontend/app/views/tile/forms/index.js | 29 |
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, +} |
