Selaa lähdekoodia

Adding a loading component for sharing between other components

Kirk Trombley 5 vuotta sitten
vanhempi
commit
00141c3681
1 muutettua tiedostoa jossa 5 lisäystä ja 0 poistoa
  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;