From 774616147d52ab289774cc02b498e04e84769fc8 Mon Sep 17 00:00:00 2001 From: f0x Date: Sun, 9 Jun 2019 21:43:54 +0200 Subject: [PATCH] new loading animation --- components/loading.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 components/loading.js diff --git a/components/loading.js b/components/loading.js new file mode 100644 index 0000000..0731ad2 --- /dev/null +++ b/components/loading.js @@ -0,0 +1,20 @@ +'use strict' +const React = require('react') +const ReactDOM = require('react-dom') +const create = require('create-react-class') + +let Loading = create({ + displayName: "Loading", + + render: function() { + return ( +
+
+
+
+
+ ) + } +}) + +module.exports = Loading