summaryrefslogtreecommitdiff
path: root/animism-align/frontend/app/common/index.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-07-22 14:05:15 +0200
committerJules Laplace <julescarbon@gmail.com>2020-07-22 14:05:15 +0200
commitef78bc6a084f92b4794e987b5832240d85b6479e (patch)
treeb314b630800db6aa60f28ef0b115625e6ca176db /animism-align/frontend/app/common/index.js
parent85d4cb9addf9ca887d3440b2786665d67d9917c4 (diff)
refactor app using babel module-resolver
Diffstat (limited to 'animism-align/frontend/app/common/index.js')
-rw-r--r--animism-align/frontend/app/common/index.js31
1 files changed, 31 insertions, 0 deletions
diff --git a/animism-align/frontend/app/common/index.js b/animism-align/frontend/app/common/index.js
new file mode 100644
index 0000000..1f0a61d
--- /dev/null
+++ b/animism-align/frontend/app/common/index.js
@@ -0,0 +1,31 @@
+// export { default as Header } from 'app/common/header.component'
+export {
+ MenuButton, SmallMenuButton, MenuRoute,
+} from 'app/common/menubutton.component'
+export {
+ Select, Checkbox, Radio, FileInput, FileInputField,
+ TextInput, NumberInput, TextArea, SubmitButton,
+ LabelDescription, ColorInput,
+} from 'app/common/form.component'
+export {
+ Loader, Swatch, Dot, Columns, Statistic, Detections, Progress
+} from 'app/common/miscellaneous.component'
+export { default as TableIndex } from 'app/common/tableIndex.component'
+export {
+ TableObject, TableArray, TableTuples,
+ TableRow, TableCell
+} from 'app/common/table.component'
+export { default as CopyToClipboardButton } from 'app/common/copyToClipboardButton.component'
+export { default as ImageCrop } from 'app/common/imageCrop.component'
+export { Modal } from 'app/common/modal.component'
+export { default as UploadImage } from 'app/common/uploadImage.component'
+export { default as Slider } from 'app/common/slider.component'
+
+import './fonts.css'
+import './app.css'
+import './form.css'
+import './loader.css'
+import './table.css'
+import './modal.css'
+import './miscellaneous.css'
+import './upload.css'