Cards are used to display specific actions about a subject. Often, users take action on subjects, such as sending a contact a message or deleting a contact. CardActions components can be used by Card components to display actions that users can take on the subject.
Performing actions
How to do it...
Let's say that you're using a Card component to display a contact. In addition to showing information about the contact, you would like for your users to be able to take actions on contacts from within the card. For example, you could provide two actions—one to message the contact, and one to phone the contact. Here's the code to do this:
import React from 'react';
import { withStyles } from &apos...