ArticleIntro
Tagline here.
STATUS: This component is in preview.
- The prop-interface has pretty much stabilized
- The component has typically been tested out in the field
- Consult the design team for usage
- As always: Your feedback is welcomed!
Basic usage
Usage with NextJS
import Link from "next/link";
function MyComponent() {
return (
<ArticleIntro
// ... other props
linkComponent={Link}
url='/'
/>
);
}