blessing-skin-server/resources/assets/src/views/admin/PlayersManagement/LoadingRow.tsx
Zephyr Lykos ae71d36c7f
cleanup: wip part 2
We have a working vite config now
2024-02-23 18:24:34 +08:00

17 lines
268 B
TypeScript

import styled from '@emotion/styled';
import Skeleton from 'react-loading-skeleton';
const ThickSkeleton = styled(Skeleton)`
line-height: 2;
`;
export default function LoadingRow() {
return (
<tr>
<td colSpan={6}>
<ThickSkeleton/>
</td>
</tr>
);
}