aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/Loader.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ui/Loader.tsx')
-rw-r--r--src/components/ui/Loader.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/ui/Loader.tsx b/src/components/ui/Loader.tsx
index 171d0e290..e889fd054 100644
--- a/src/components/ui/Loader.tsx
+++ b/src/components/ui/Loader.tsx
@@ -2,14 +2,14 @@ import { Component, ReactChildren } from 'react';
2import { observer, inject } from 'mobx-react'; 2import { observer, inject } from 'mobx-react';
3import Loader from 'react-loader'; 3import Loader from 'react-loader';
4 4
5import { FerdiStores } from '../../stores.types'; 5import { FerdiumStores } from '../../stores.types';
6 6
7type Props = { 7type Props = {
8 children: ReactChildren; 8 children: ReactChildren;
9 loaded: boolean; 9 loaded: boolean;
10 className: string; 10 className: string;
11 color: string; 11 color: string;
12 stores: FerdiStores; 12 stores: FerdiumStores;
13}; 13};
14 14
15class LoaderComponent extends Component<Props> { 15class LoaderComponent extends Component<Props> {