- Switched to pnpm - Updated to typescript 4.9.5 - JSX transforms switched to react-jsx - Use swc for typescript transforms - Remove deprecated dependencies - Cleanup unused types - Some ESM fixes - PostCSS config now lives in package.json - Bump support target TODO: - switch to vite or plain esbuild - jest to vitest / uvu - jquery to cash-dom - pure ESM (lodash-es, etc.) - drop prettier & husky (lint-staged is okay) - drop wasm cli & xterm.js - update bootstrap
17 lines
281 B
TypeScript
17 lines
281 B
TypeScript
import styled from '@emotion/styled'
|
|
import Skeleton from 'react-loading-skeleton'
|
|
|
|
const ThickSkeleton = styled(Skeleton)`
|
|
line-height: 2;
|
|
`
|
|
|
|
const LoadingRow: React.FC = () => (
|
|
<tr>
|
|
<td colSpan={8}>
|
|
<ThickSkeleton />
|
|
</td>
|
|
</tr>
|
|
)
|
|
|
|
export default LoadingRow
|