Add overseerr widget

This commit is contained in:
Manuel
2023-04-04 22:32:08 +02:00
parent 7cf6fe53fc
commit c1463b3aa6
10 changed files with 410 additions and 0 deletions

7
src/widgets/loading.tsx Normal file
View File

@@ -0,0 +1,7 @@
import { Center, Loader } from '@mantine/core';
export const WidgetLoading = () => (
<Center h="100%">
<Loader variant="bars" />
</Center>
);