This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

semble / src / webapp / features / cards / containers / cardsContainer / Error.CardsContainer.tsx
224 B 9 lines
1import { Alert, Container } from '@mantine/core'; 2 3export default function CardsContainerError() { 4 return ( 5 <Container p="xs" size="xl"> 6 <Alert color="red" title="Could not load cards" /> 7 </Container> 8 ); 9}