]> git.localhorst.tv Git - alttp.git/blob - resources/js/components/common/Loading.js
respond to whispers
[alttp.git] / resources / js / components / common / Loading.js
1 import React from 'react';
2 import { ProgressBar } from 'react-bootstrap';
3
4 const Loading = () => <div className="loading">
5         <ProgressBar animated now={100} variant="info" />
6 </div>;
7
8 export default Loading;