mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-10-02 19:00:10 +00:00
Version 3 starter
This commit is contained in:
18
frontend/src/components/Loading.tsx
Normal file
18
frontend/src/components/Loading.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import React from "react";
|
||||
|
||||
import styled from "styled-components";
|
||||
import { Loader } from "tabler-react";
|
||||
|
||||
const Root = styled.div`
|
||||
text-align: center;
|
||||
`;
|
||||
|
||||
function Loading() {
|
||||
return (
|
||||
<Root>
|
||||
<Loader />
|
||||
</Root>
|
||||
);
|
||||
}
|
||||
|
||||
export { Loading };
|
Reference in New Issue
Block a user