Add throbber while waiting for builds to load

This commit is contained in:
Ian Minoso 2016-12-15 12:57:18 -08:00
parent 2730c26b2e
commit 149dd46076
4 changed files with 50 additions and 17 deletions

View file

@ -0,0 +1,15 @@
import * as React from 'react';
import * as moment from "moment";
export default class Throbber extends React.Component<any, any> {
render () {
return(
<div className="co-m-loader co-an-fade-in-out rp-throbber">
<div className="co-m-loader-dot__one"></div>
<div className="co-m-loader-dot__two"></div>
<div className="co-m-loader-dot__three"></div>
</div>
);
}
}