import React from 'react';
const MyComponent = ({ optionalParam = 'Default Value' }) => {
return (
<div>
<p>{optionalParam}</p>
</div>
);
};
export default MyComponent;
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)