UNPKG

@kadconsulting/dry

Version:
7 lines 442 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import './CardForStory.scss'; const CardForStory = ({ title, description, index, }) => { return (_jsxs("div", { className: `card-for-story card-${index % 4}`, children: [_jsx("h2", { className: 'card-title', children: title }), _jsx("p", { className: 'card-description', children: description })] })); }; export default CardForStory; //# sourceMappingURL=CardForStory.js.map