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

20 lines
327 B
TypeScript

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