Skip to content

Commit

Permalink
Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
fkorotkov committed Feb 1, 2023
1 parent bde7ac9 commit 09e8c80
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/scenes/Home/WelcomePage.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react';
import Paper from '@mui/material/Paper';
import {Helmet as Head} from 'react-helmet';
import { Helmet as Head } from 'react-helmet';
import MarkdownTypography from '../../components/common/MarkdownTypography';
import {makeStyles} from '@mui/styles';
import { makeStyles } from '@mui/styles';

const useStyles = makeStyles(theme => {
return {
Expand All @@ -20,11 +20,11 @@ function WelcomePage() {
<Head>
<title>Welcome - Cirrus CI</title>
</Head>
<MarkdownTypography text={'# Welcome to Cirrus CI.'}/>
<MarkdownTypography text={'# Welcome to Cirrus CI.'} />
<MarkdownTypography
text={'Please [**sign in**](https://api.cirrus-ci.com/redirect/auth/github) to see your recent builds.'}
/>
<MarkdownTypography text={'Just got here? Visit [**our documentation**](https://cirrus-ci.org).'}/>
<MarkdownTypography text={'Just got here? Visit [**our documentation**](https://cirrus-ci.org).'} />
</Paper>
);
}
Expand Down

0 comments on commit 09e8c80

Please sign in to comment.