Select the types of activity you want to include in your feed.
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}