react-code-dataset / wp-calypso /client /me /developer /get-i-am-a-developer-copy.tsx
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { translate as translateFunction } from 'i18n-calypso';
export const getIAmDeveloperCopy = ( translate: typeof translateFunction ) =>
translate(
'{{strong}}I am a developer{{/strong}} {{span}}Opt me into previews of new developer-focused features.{{/span}}',
{
components: {
strong: <strong />,
span: <span />,
},
}
);