bc998444a3
* Possibly use safe Text component * Possibly use safe navigation components * Add experimental package * Update components to import from woocommerce/experimental * Make experimental package private * Reference experimental package relatively * Update packages/experimental/README.md Co-authored-by: Paul Sealock <psealock@gmail.com> * Update packages/experimental/CHANGELOG.md Co-authored-by: Paul Sealock <psealock@gmail.com> * Update history state instead of mocking getQuery in tests * Handle PR feedback * Create excluded externals array and return early Co-authored-by: Paul Sealock <psealock@gmail.com> |
||
---|---|---|
.. | ||
test | ||
README.md | ||
index.js | ||
style.scss |
README.md
Card
This component is a simple wrapper around the Card component from @wordpress/components
. It supports title
and description
props to be displayed in the card header.
Usage
<Card
title="Title"
description="Description goes here."
className="className"
>
<div>
Any card content goes here.
</div>
</Card>