ItemCard()
Home > @backstage/core-components
> ItemCard
Warning: This API is now obsolete.
Use plain Material UI
<Card>
and composable helpers instead.
This card type has been deprecated. Instead use plain Material UI Card and helpers where appropriate.
Signature:
function ItemCard(props: ItemCardProps): React.JSX.Element;
Parameters
Parameter |
Type |
Description |
---|---|---|
props |
ItemCardProps |
React.JSX.Element
Example
<Card>
<CardMedia>
<ItemCardHeader title="My Card" subtitle="neat!" />
</CardMedia>
<CardContent>
Some text
</CardContent>
<CardActions>
<Button color="primary" to="https://backstage.io">
Get Started
</Button>
</CardActions>
</Card>