diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-01-10 13:50:40 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-01-10 13:50:59 +0100 |
commit | 1e9d2c4b1e00e8e68fefe5c04b48f66c827d31d5 (patch) | |
tree | a1d6fd38f52e6850d5dd575386e7bfb9c9edb963 /app/assets/javascripts/components/features/generic_not_found | |
parent | a1db2a191bb5437cdf552ed1188d6f81f4885b6f (diff) |
Add "not found" component to UI
Diffstat (limited to 'app/assets/javascripts/components/features/generic_not_found')
-rw-r--r-- | app/assets/javascripts/components/features/generic_not_found/index.jsx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/assets/javascripts/components/features/generic_not_found/index.jsx b/app/assets/javascripts/components/features/generic_not_found/index.jsx new file mode 100644 index 000000000..a7afe29b0 --- /dev/null +++ b/app/assets/javascripts/components/features/generic_not_found/index.jsx @@ -0,0 +1,10 @@ +import Column from '../ui/components/column'; +import MissingIndicator from '../../components/missing_indicator'; + +const GenericNotFound = () => ( + <Column> + <MissingIndicator /> + </Column> +); + +export default GenericNotFound; |