12 lines
280 B
JavaScript
12 lines
280 B
JavaScript
|
import React from 'react';
|
||
|
import PropTypes from 'prop-types';
|
||
|
|
||
|
const Skeleton = ({ width, height }) => <span className='skeleton' style={{ width, height }}>‌</span>;
|
||
|
|
||
|
Skeleton.propTypes = {
|
||
|
width: PropTypes.number,
|
||
|
height: PropTypes.number,
|
||
|
};
|
||
|
|
||
|
export default Skeleton;
|