Removed React.FC from welcome page

This commit is contained in:
ellinors
2020-07-01 14:53:51 +02:00
parent 434994bfee
commit 6a1bdd8853
@@ -14,7 +14,7 @@
* limitations under the License.
*/
import React, { FC } from 'react';
import React from 'react';
import { Link as RouterLink } from 'react-router-dom';
import {
Typography,
@@ -38,7 +38,7 @@ import {
configApiRef,
} from '@backstage/core';
const WelcomePage: FC<{}> = () => {
const WelcomePage = ({}) => {
const appTitle =
useApi(configApiRef).getOptionalString('app.title') ?? 'Backstage';
const profile = { givenName: '' };