DockerRegistryWebUI/src/components/Loading.tsx
2022-04-12 03:54:09 +01:00

9 lines
134 B
TypeScript

import React from "react";
const Loading: React.FC = () => {
return(
<h1>Loading!</h1>
);
};
export default Loading;