@equinor/eds-core-react
Version:
The React implementation of the Equinor Design System
18 lines (14 loc) • 375 B
JavaScript
import { jsx } from '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__*/jsx("div", {
"data-testid": "eds-placeholder",
children: text
});
};
export { Placeholder };