UNPKG

@teikei/map

Version:

Teikei map SPA component. Teikei is the software that powers ernte-teilen.org, a website that maps out Community-supported Agriculture in Germany.

15 lines (11 loc) 331 B
import ReactLoading from 'react-loading' import React from 'react' import './styles.scss' const Loading = props => ( <div className="spinner--screen"> <div className="spinner--container"> <ReactLoading type={'spinningBubbles'} color="#ffffff" height={100} width={150} /> </div> </div> ) export default Loading