This repository has no description
0

Configure Feed

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

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