From f470636a70943a8ecad8bddc791a1c2dddd28e1e Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Sat, 4 May 2019 21:13:12 +0300 Subject: Components -> UI --- vnext/src/ui/Spinner.js | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 vnext/src/ui/Spinner.js (limited to 'vnext/src/ui/Spinner.js') diff --git a/vnext/src/ui/Spinner.js b/vnext/src/ui/Spinner.js new file mode 100644 index 00000000..e866369f --- /dev/null +++ b/vnext/src/ui/Spinner.js @@ -0,0 +1,42 @@ +import React from 'react'; +import ContentLoader from 'react-content-loader'; + +function Spinner(props) { + return ( +
+
+ + + + + + + + + +
+
+ ); +} + +export default React.memo(Spinner); + +export function ChatSpinner(props) { + return ( + + + + + + ); +} -- cgit v1.2.3