aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/WebviewLoader
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-12-08 17:09:12 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-12-08 17:09:12 +0100
commit7ab7605c220c665607844784ffbf21a030888f8e (patch)
tree5285647db76b4cc16444d2fb81b7fb0585367416 /src/components/ui/WebviewLoader
parentfeat(Service): Add error screen for services that failed to load (diff)
downloadferdium-app-7ab7605c220c665607844784ffbf21a030888f8e.tar.gz
ferdium-app-7ab7605c220c665607844784ffbf21a030888f8e.tar.zst
ferdium-app-7ab7605c220c665607844784ffbf21a030888f8e.zip
Revamp app loaders
Diffstat (limited to 'src/components/ui/WebviewLoader')
-rw-r--r--src/components/ui/WebviewLoader/index.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/ui/WebviewLoader/index.js b/src/components/ui/WebviewLoader/index.js
new file mode 100644
index 000000000..eff4dc3d7
--- /dev/null
+++ b/src/components/ui/WebviewLoader/index.js
@@ -0,0 +1,9 @@
1import React from 'react';
2
3import FullscreenLoader from '../FullscreenLoader';
4
5export default ({ name }) => (
6 <FullscreenLoader
7 title={`Loading ${name}`}
8 />
9);