Skip to content

Commit

Permalink
Remove Span
Browse files Browse the repository at this point in the history
  • Loading branch information
zanivan committed Nov 1, 2024
1 parent f12ce4a commit 5c1c66e
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 36 deletions.
16 changes: 7 additions & 9 deletions docs/data/material/getting-started/templates/sign-in/SignIn.js
Original file line number Diff line number Diff line change
Expand Up @@ -216,15 +216,13 @@ export default function SignIn(props) {
</Button>
<Typography sx={{ textAlign: 'center' }}>
Don&apos;t have an account?{' '}
<span>
<Link
href="/material-ui/getting-started/templates/sign-in/"
variant="body2"
sx={{ alignSelf: 'center' }}
>
Sign up
</Link>
</span>
<Link
href="/material-ui/getting-started/templates/sign-in/"
variant="body2"
sx={{ alignSelf: 'center' }}
>
Sign up
</Link>
</Typography>
</Box>
</Card>
Expand Down
16 changes: 7 additions & 9 deletions docs/data/material/getting-started/templates/sign-in/SignIn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -216,15 +216,13 @@ export default function SignIn(props: { disableCustomTheme?: boolean }) {
</Button>
<Typography sx={{ textAlign: 'center' }}>
Don&apos;t have an account?{' '}
<span>
<Link
href="/material-ui/getting-started/templates/sign-in/"
variant="body2"
sx={{ alignSelf: 'center' }}
>
Sign up
</Link>
</span>
<Link
href="/material-ui/getting-started/templates/sign-in/"
variant="body2"
sx={{ alignSelf: 'center' }}
>
Sign up
</Link>
</Typography>
</Box>
</Card>
Expand Down
16 changes: 7 additions & 9 deletions docs/data/material/getting-started/templates/sign-up/SignUp.js
Original file line number Diff line number Diff line change
Expand Up @@ -217,15 +217,13 @@ export default function SignUp(props) {
</Button>
<Typography sx={{ textAlign: 'center' }}>
Already have an account?{' '}
<span>
<Link
href="/material-ui/getting-started/templates/sign-in/"
variant="body2"
sx={{ alignSelf: 'center' }}
>
Sign in
</Link>
</span>
<Link
href="/material-ui/getting-started/templates/sign-in/"
variant="body2"
sx={{ alignSelf: 'center' }}
>
Sign in
</Link>
</Typography>
</Box>
</Card>
Expand Down
16 changes: 7 additions & 9 deletions docs/data/material/getting-started/templates/sign-up/SignUp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -217,15 +217,13 @@ export default function SignUp(props: { disableCustomTheme?: boolean }) {
</Button>
<Typography sx={{ textAlign: 'center' }}>
Already have an account?{' '}
<span>
<Link
href="/material-ui/getting-started/templates/sign-in/"
variant="body2"
sx={{ alignSelf: 'center' }}
>
Sign in
</Link>
</span>
<Link
href="/material-ui/getting-started/templates/sign-in/"
variant="body2"
sx={{ alignSelf: 'center' }}
>
Sign in
</Link>
</Typography>
</Box>
</Card>
Expand Down

0 comments on commit 5c1c66e

Please sign in to comment.