Sfoglia il codice sorgente

Adding a loading component for sharing between other components

Kirk Trombley 5 anni fa
parent
commit
00141c3681
1 ha cambiato i file con 5 aggiunte e 0 eliminazioni
  1. 5 0
      ui/src/components/loading.component.jsx

+ 5 - 0
ui/src/components/loading.component.jsx

@@ -0,0 +1,5 @@
+import React from "react";
+
+const Loading = () => <p>Loading...</p>
+
+export default Loading;