summaryrefslogtreecommitdiffstats
path: root/src/components/ui/WebviewLoader/index.js
blob: eff4dc3d7243dbaf9319c782b3f5ccdb66f6ff89 (plain) (blame)
1
2
3
4
5
6
7
8
9
import React from 'react';

import FullscreenLoader from '../FullscreenLoader';

export default ({ name }) => (
  <FullscreenLoader
    title={`Loading ${name}`}
  />
);