aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/WebviewLoader
diff options
context:
space:
mode:
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);