vcc-ui
Version:
A React library for building user interfaces at Volvo Cars
14 lines • 425 B
JavaScript
import React, { useRef } from 'react';
import { CardContent } from 'vcc-ui';
// passes ref and allow div attributes
() => {
const ref = useRef(null);
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(CardContent, {
ref: ref,
"aria-label": "label"
}), /*#__PURE__*/React.createElement(CardContent, {
ref: ref,
"aria-label": "label",
href: "href"
}));
};