aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/auth/Welcome.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/auth/Welcome.tsx')
-rw-r--r--src/components/auth/Welcome.tsx18
1 files changed, 11 insertions, 7 deletions
diff --git a/src/components/auth/Welcome.tsx b/src/components/auth/Welcome.tsx
index c1a2db386..ec1c167c0 100644
--- a/src/components/auth/Welcome.tsx
+++ b/src/components/auth/Welcome.tsx
@@ -1,14 +1,18 @@
1import { Component, ReactElement } from 'react';
2import { observer, inject } from 'mobx-react';
3import { defineMessages, injectIntl, WrappedComponentProps } from 'react-intl';
4import { noop } from 'lodash'; 1import { noop } from 'lodash';
5import serverlessLogin from '../../helpers/serverless-helpers'; 2import { inject, observer } from 'mobx-react';
6import shuffleArray from '../../helpers/array-helpers'; 3import { Component, type ReactElement } from 'react';
4import {
5 type WrappedComponentProps,
6 defineMessages,
7 injectIntl,
8} from 'react-intl';
9import type { StoresProps } from '../../@types/ferdium-components.types';
7import { serverName } from '../../api/apiBase'; 10import { serverName } from '../../api/apiBase';
11import shuffleArray from '../../helpers/array-helpers';
12import serverlessLogin from '../../helpers/serverless-helpers';
13import type RecipePreview from '../../models/RecipePreview';
8import Link from '../ui/Link'; 14import Link from '../ui/Link';
9import { H1 } from '../ui/headline'; 15import { H1 } from '../ui/headline';
10import { StoresProps } from '../../@types/ferdium-components.types';
11import RecipePreview from '../../models/RecipePreview';
12 16
13const messages = defineMessages({ 17const messages = defineMessages({
14 signupButton: { 18 signupButton: {