odyssey-client/src/ui/Loading.tsx

17 lines
328 B
TypeScript
Raw Normal View History

2020-10-05 15:35:29 +00:00
import React from "react";
//@ts-expect-error Image resource
import spinner from "~/../assets/images/logos/spinner.svg";
export interface LoadingScreenLayer {
type: "LoadingScreen";
}
export default function LoadingScreenUI() {
return (
<div>
<img src={spinner} style={{ width: "50vmin" }} />
</div>
);
}