File size: 349 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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 />,
},
}
);
|