Skip to content

Commit

Permalink
simpler
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Sep 30, 2022
1 parent 948653a commit 518af4f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions docs/data/joy/components/card/InteractiveCard.js
@@ -1,6 +1,5 @@
import * as React from 'react';
import AspectRatio from '@mui/joy/AspectRatio';
import Box from '@mui/joy/Box';
import Link from '@mui/joy/Link';
import Card from '@mui/joy/Card';
import Chip from '@mui/joy/Chip';
Expand All @@ -25,7 +24,7 @@ export default function InteractiveCard() {
alt=""
/>
</AspectRatio>
<Box>
<div>
<Typography level="h2" fontSize="lg" id="card-description" mb={0.5}>
Yosemite Park
</Typography>
Expand All @@ -47,7 +46,7 @@ export default function InteractiveCard() {
>
Cool weather all day long
</Chip>
</Box>
</div>
</Card>
);
}
5 changes: 2 additions & 3 deletions docs/data/joy/components/card/InteractiveCard.tsx
@@ -1,6 +1,5 @@
import * as React from 'react';
import AspectRatio from '@mui/joy/AspectRatio';
import Box from '@mui/joy/Box';
import Link from '@mui/joy/Link';
import Card from '@mui/joy/Card';
import Chip from '@mui/joy/Chip';
Expand All @@ -25,7 +24,7 @@ export default function InteractiveCard() {
alt=""
/>
</AspectRatio>
<Box>
<div>
<Typography level="h2" fontSize="lg" id="card-description" mb={0.5}>
Yosemite Park
</Typography>
Expand All @@ -47,7 +46,7 @@ export default function InteractiveCard() {
>
Cool weather all day long
</Chip>
</Box>
</div>
</Card>
);
}

0 comments on commit 518af4f

Please sign in to comment.