summaryrefslogtreecommitdiffstats
path: root/src/containers/auth/AuthLayoutContainer.tsx
diff options
context:
space:
mode:
authorLibravatar Ricardo Cino <ricardo@cino.io>2022-06-27 18:21:31 +0200
committerLibravatar GitHub <noreply@github.com>2022-06-27 17:21:31 +0100
commit0bf13689d53bd493fb4d0a4213c1801013b5aa8a (patch)
tree2b5ae44e4f1aa73b49c011954ff1cb47e3959bad /src/containers/auth/AuthLayoutContainer.tsx
parentchore: recommend specific vscode extensions to setup development [skip ci] (#... (diff)
downloadferdium-app-0bf13689d53bd493fb4d0a4213c1801013b5aa8a.tar.gz
ferdium-app-0bf13689d53bd493fb4d0a4213c1801013b5aa8a.tar.zst
ferdium-app-0bf13689d53bd493fb4d0a4213c1801013b5aa8a.zip
chore: transform containers/settings from js to tsx (#384)
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> {