Add throbber while waiting for builds to load
This commit is contained in:
parent
2730c26b2e
commit
149dd46076
4 changed files with 50 additions and 17 deletions
15
static/js/directives/components/pages/repo-page/throbber.tsx
Normal file
15
static/js/directives/components/pages/repo-page/throbber.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Reference in a new issue