From ff1a39d04e53b428e34d46c55ecd6689189b5443 Mon Sep 17 00:00:00 2001 From: Haishan Date: Sat, 31 Oct 2020 18:18:04 +0800 Subject: chore: run ts-migrate --- src/components/Loading.js | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 src/components/Loading.js (limited to 'src/components/Loading.js') diff --git a/src/components/Loading.js b/src/components/Loading.js deleted file mode 100644 index 3547d03..0000000 --- a/src/components/Loading.js +++ /dev/null @@ -1,19 +0,0 @@ -import PropTypes from 'prop-types'; -import React from 'react'; - -import s0 from './Loading.module.css'; - -const Loading = ({ height }) => { - const style = height ? { height } : {}; - return ( -
-
-
- ); -}; - -Loading.propTypes = { - height: PropTypes.string, -}; - -export default Loading; -- cgit v1.3.1