summaryrefslogtreecommitdiff
path: root/src/components/Loading.js
diff options
context:
space:
mode:
authorHaishan <[email protected]>2020-06-20 22:28:43 +0800
committerHaishan <[email protected]>2020-06-20 22:28:43 +0800
commit632c6a37350c830902046546fc07ce764ca009a0 (patch)
treeed90e7cef41865732dafe7de22e33a3a1c589927 /src/components/Loading.js
parent71a7d8d4c125a5751c94ecb10468994634286425 (diff)
feat: add a simple filter for proxy names
Diffstat (limited to 'src/components/Loading.js')
-rw-r--r--src/components/Loading.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Loading.js b/src/components/Loading.js
index 37fcef5..3547d03 100644
--- a/src/components/Loading.js
+++ b/src/components/Loading.js
@@ -1,5 +1,5 @@
-import React from 'react';
import PropTypes from 'prop-types';
+import React from 'react';
import s0 from './Loading.module.css';
@@ -13,7 +13,7 @@ const Loading = ({ height }) => {
};
Loading.propTypes = {
- height: PropTypes.string
+ height: PropTypes.string,
};
export default Loading;