1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-10 01:16:39 +02:00
unleash.unleash/frontend/src/component/api-token/ApiTokenList/secret.jsx
2021-10-07 11:44:46 +01:00

16 lines
308 B
JavaScript

import PropTypes from 'prop-types';
function Secret({ value }) {
return (
<div>
<span style={{ width: '250px', display: 'inline-block' }}>************************************</span>
</div>
);
}
Secret.propTypes = {
value: PropTypes.string,
};
export default Secret;