Sorry, but you either have no stories or none are selected somehow.
If the problem persists, check the browser console, or the terminal you've run Storybook from.
A simple horizontal card to show content entities like articles.
An article card must be within a Widget.
Property Name | Description | Type | Required |
---|---|---|---|
article | The article data to show | any | true |
onItemClick | Action to execute when the item is clicked. | (payload: ItemClickedAction) => void | true |
index | The position of the item. If, for example, we are showing a grid with multiple articles, should be the order of appearance starting in 0 | number | true |
const article = {
description: 'Lorem ipsum dolor sit amet...',
title: 'Artcile Title',
image_url:
'https://static.vecteezy.com/system/resources/thumbnails/004/141/669/small/no-photo-or-blank-image-icon-loading-images-or-missing-image-mark-image-not-available-or-image-coming-soon-sign-simple-nature-silhouette-in-frame-isolated-illustration-vector.jpg',
author: 'Doe John',
};
return <ArticleHorizontalCard article={article} onItemClick={(payload) => console.log(payload)} index={0} />;
npx sc-search new-component -w -s styled -l typescript -n ArticleHorizontalCard -o <destination/path>