Create interactable cards from the material design specifications.
npm install @react-md/cardThis package is for creating interactable cards from the material design
guidelines.
``sh`
npm install --save @react-md/card
It is also recommended to install the following packages as they work
hand-in-hand with this package:
`sh`
npm install --save @react-md/theme \
@react-md/typography \
@react-md/icon \
@react-md/media \
@react-md/avatar \
@react-md/button \
@react-md/transition
You should check out the
full documentation for live examples
and more customization information, but an example usage is shown below.
`tsx
import { Fragment } from "react";
import { render } from "react-dom";
import { Button } from "@react-md/button";
import { Card, CardHeader, CardTitle, CardSubtitle, CardActions } from "@react-md/card"
import { Typography } from "@react-md/typography"
const App = () => (
);
render(
``