A JavaScript library that generates liturgical calendars of the Roman Rite of the Roman Catholic Church.
@@ -33,5 +33,3 @@ const Headline = () => (
);
-
-export default Headline;
diff --git a/react-app/src/components/LoadingIndicator.tsx b/react-app/src/components/LoadingIndicator.tsx
index 7cc492d..4db4fcb 100644
--- a/react-app/src/components/LoadingIndicator.tsx
+++ b/react-app/src/components/LoadingIndicator.tsx
@@ -1,6 +1,6 @@
+import React from 'react';
import styled from '@emotion/styled';
import { Box, CircularProgress } from '@mui/material';
-import * as React from 'react';
const Container = styled(Box)`
margin: 80px 0 50px;
@@ -9,10 +9,8 @@ const Container = styled(Box)`
justify-content: center;
`;
-const LoadingIndicator = () => (
+export const LoadingIndicator = () => (