@equinor/eds-core-react
Version:
The React implementation of the Equinor Design System
20 lines (15 loc) • 418 B
JavaScript
;
var jsxRuntime = require('react/jsx-runtime');
/**
* Placeholder component for testing the /next entry point.
* This component should be removed once real EDS 2.0 components are added.
*/
const Placeholder = ({
text = 'EDS 2.0 Placeholder'
}) => {
return /*#__PURE__*/jsxRuntime.jsx("div", {
"data-testid": "eds-placeholder",
children: text
});
};
exports.Placeholder = Placeholder;