Select the types of activity you want to include in your feed.
1import { Loader, Stack } from '@mantine/core'; 2 3export default function Loading() { 4 return ( 5 <Stack align="center"> 6 <Loader type="dots" /> 7 </Stack> 8 ); 9}