فهرست منبع

Adding a loading component for sharing between other components

Kirk Trombley 5 سال پیش
والد
کامیت
00141c3681
1فایلهای تغییر یافته به همراه5 افزوده شده و 0 حذف شده
  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;