mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-10-02 19:00:10 +00:00
19 lines
249 B
TypeScript
19 lines
249 B
TypeScript
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 };
|