rc-bmap
Version:
<p align="center"> <img src="https://bmap.jser-club.com/home.png" width="200px"> </p> <p align="center">基于 React 的百度地图组件</p>
19 lines (15 loc) • 391 B
JavaScript
import React, { PureComponent } from 'react';
const style = {
height: '100%',
width: '100%',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
};
export default class PlaceHolder extends PureComponent {
static displayName= 'PlaceHolder'
render() {
const { children } = this.props;
return children || <div style={style}>地图加载中...</div>;
}
}