Grégoire Delattre c5cafacbf1 Update everything to work with the new router
By the way, remove the router state from redux.
2019-05-19 02:31:25 +02:00

17 lines
333 B
JavaScript

import React from "react"
import Loading from "react-loading"
const Loader = () => (
<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>
);
export default Loader;