ソースを参照

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;