]> git.localhorst.tv Git - alttp.git/blob - Loading.js
b850dec12d3f3d718cdb58f8ee24ea3cd14ccee3
[alttp.git] / 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;