17 lines
268 B
TypeScript
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>
|
|
);
|
|
}
|