aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/SignupScreen.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/SignupScreen.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/SignupScreen.tsx')
-rw-r--r--src/containers/auth/SignupScreen.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/containers/auth/SignupScreen.tsx b/src/containers/auth/SignupScreen.tsx
index 1dac392ef..04b39df67 100644
--- a/src/containers/auth/SignupScreen.tsx
+++ b/src/containers/auth/SignupScreen.tsx
@@ -1,10 +1,10 @@
1import { Component, ReactElement } from 'react'; 1import { Component, ReactElement } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3 3
4import { DefaultProps, GlobalError } from 'src/@types/ferdium-components.types'; 4import { StoresProps, GlobalError } from 'src/@types/ferdium-components.types';
5import Signup from '../../components/auth/Signup'; 5import Signup from '../../components/auth/Signup';
6 6
7interface SignUpScreenComponents extends DefaultProps { 7interface SignUpScreenComponents extends StoresProps {
8 error: GlobalError; 8 error: GlobalError;
9} 9}
10 10