소스 검색

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;