-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[material-ui][Card] Convert to support CSS extraction (#41580)
- Loading branch information
Showing
7 changed files
with
118 additions
and
38 deletions.
There are no files selected for viewing
65 changes: 65 additions & 0 deletions
65
apps/pigment-css-next-app/src/app/material-ui/react-card/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
'use client'; | ||
import * as React from 'react'; | ||
import ActionAreaCard from '../../../../../../docs/data/material/components/cards/ActionAreaCard'; | ||
import BasicCard from '../../../../../../docs/data/material/components/cards/BasicCard'; | ||
import ImgMediaCard from '../../../../../../docs/data/material/components/cards/ImgMediaCard'; | ||
import MediaCard from '../../../../../../docs/data/material/components/cards/MediaCard'; | ||
import MediaControlCard from '../../../../../../docs/data/material/components/cards/MediaControlCard'; | ||
import MultiActionAreaCard from '../../../../../../docs/data/material/components/cards/MultiActionAreaCard'; | ||
import OutlinedCard from '../../../../../../docs/data/material/components/cards/OutlinedCard'; | ||
import RecipeReviewCard from '../../../../../../docs/data/material/components/cards/RecipeReviewCard'; | ||
|
||
export default function Cards() { | ||
return ( | ||
<React.Fragment> | ||
<section> | ||
<h2> Action Area Card</h2> | ||
<div className="demo-container"> | ||
<ActionAreaCard /> | ||
</div> | ||
</section> | ||
<section> | ||
<h2> Basic Card</h2> | ||
<div className="demo-container"> | ||
<BasicCard /> | ||
</div> | ||
</section> | ||
<section> | ||
<h2> Img Media Card</h2> | ||
<div className="demo-container"> | ||
<ImgMediaCard /> | ||
</div> | ||
</section> | ||
<section> | ||
<h2> Media Card</h2> | ||
<div className="demo-container"> | ||
<MediaCard /> | ||
</div> | ||
</section> | ||
<section> | ||
<h2> Media Control Card</h2> | ||
<div className="demo-container"> | ||
<MediaControlCard /> | ||
</div> | ||
</section> | ||
<section> | ||
<h2> Multi Action Area Card</h2> | ||
<div className="demo-container"> | ||
<MultiActionAreaCard /> | ||
</div> | ||
</section> | ||
<section> | ||
<h2> Outlined Card</h2> | ||
<div className="demo-container"> | ||
<OutlinedCard /> | ||
</div> | ||
</section> | ||
<section> | ||
<h2> Recipe Review Card</h2> | ||
<div className="demo-container"> | ||
<RecipeReviewCard /> | ||
</div> | ||
</section> | ||
</React.Fragment> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters