Files
nginx-proxy-manager/frontend/src/components/Loading.tsx
2021-06-14 19:45:28 +10:00

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 };