aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/AuthLayoutContainer.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/auth/AuthLayoutContainer.tsx')
-rw-r--r--src/containers/auth/AuthLayoutContainer.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/containers/auth/AuthLayoutContainer.tsx b/src/containers/auth/AuthLayoutContainer.tsx
index 8d65ec6f4..abe3905e0 100644
--- a/src/containers/auth/AuthLayoutContainer.tsx
+++ b/src/containers/auth/AuthLayoutContainer.tsx
@@ -2,14 +2,14 @@ import { Component, ReactElement, ReactNode } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3import { ThemeProvider } from 'react-jss'; 3import { ThemeProvider } from 'react-jss';
4 4
5import { DefaultProps } from 'src/@types/ferdium-components.types'; 5import { StoresProps } from 'src/@types/ferdium-components.types';
6import { Location } from 'mobx-react-router'; 6import { Location } from 'mobx-react-router';
7import AuthLayout from '../../components/auth/AuthLayout'; 7import AuthLayout from '../../components/auth/AuthLayout';
8import AppLoader from '../../components/ui/AppLoader'; 8import AppLoader from '../../components/ui/AppLoader';
9 9
10interface AuthLayoutContainerProps extends DefaultProps { 10interface AuthLayoutContainerProps extends StoresProps {
11 location: Location; 11 location: Location;
12 children: ReactNode[] | ReactNode; 12 children: ReactNode;
13} 13}
14 14
15class AuthLayoutContainer extends Component<AuthLayoutContainerProps> { 15class AuthLayoutContainer extends Component<AuthLayoutContainerProps> {