# @fluentui/react-card **React Card components for [Fluent UI React](https://react.fluentui.dev)** A card is a container that holds information and actions related to a single concept or object, like a document or a contact. ## Usage To import React Card components: ```js import { Card, CardPreview, CardHeader, CardFooter } from "@fluentui/react-components'; ``` Example Card usage: ![example of a Card component in usage](./docs/assets/card-example.png) ```jsx import { Share16Regular, ArrowReply16Regular } from '@fluentui/react-icons'; import { Button, Body1, Caption1 } from '@fluentui/react-components'; import { Card, CardHeader, CardPreview, CardFooter } from '@fluentui/react-components'; const App = () => ( <> } header={ Elvia Atkins mentioned you } description={5h ago ยท About us - Overview} /> } > Preview of a Word document ); ``` ## Specification See the [Spec.md](./Spec.md) file for background information on the design/engineering decisions of the component. ## API For information about the components, please refer to the [API documentation](https://react.fluentui.dev/?path=/docs/preview-components-card--default). ## Migration For migration information, have a look at the [migration guide](./MIGRATION.md).