import React from 'react'; import PropTypes from 'prop-types'; import s0 from './Loading.module.scss'; const Loading = ({ height }) => { const style = height ? { height } : {}; return (
); }; Loading.propTypes = { height: PropTypes.string }; export default Loading;