mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-07-01 03:00:36 +03:00
0f09faa1bc
- Removed Yarn dependency and replaced with PNPM - Changed Frontend to render via vite
33 lines
1.1 KiB
React
33 lines
1.1 KiB
React
// material-ui
|
|
import { Card, CardContent, Grid } from '@mui/material'
|
|
import Skeleton from '@mui/material/Skeleton'
|
|
|
|
// ==============================|| SKELETON - BRIDGE CARD ||============================== //
|
|
|
|
const ChatflowCard = () => (
|
|
<Card>
|
|
<CardContent>
|
|
<Grid container direction='column'>
|
|
<Grid item>
|
|
<Grid container justifyContent='space-between'>
|
|
<Grid item>
|
|
<Skeleton variant='rectangular' width={44} height={44} />
|
|
</Grid>
|
|
<Grid item>
|
|
<Skeleton variant='rectangular' width={34} height={34} />
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
<Grid item>
|
|
<Skeleton variant='rectangular' sx={{ my: 2 }} height={40} />
|
|
</Grid>
|
|
<Grid item>
|
|
<Skeleton variant='rectangular' height={30} />
|
|
</Grid>
|
|
</Grid>
|
|
</CardContent>
|
|
</Card>
|
|
)
|
|
|
|
export default ChatflowCard
|