Browse Source

Adding a loading component for sharing between other components

Kirk Trombley 5 năm trước cách đây
mục cha
commit
00141c3681
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  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;