18 lines
356 B
JavaScript
18 lines
356 B
JavaScript
import React from "react"
|
|
import Loading from "react-loading"
|
|
|
|
export default function Loader() {
|
|
return (
|
|
<div className="row" id="container">
|
|
<div className="col-md-6 col-md-offset-3">
|
|
<Loading
|
|
type="bars"
|
|
height={"100%"}
|
|
width={"100%"}
|
|
color="#EBEBEB"
|
|
/>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|