diff --git a/packages/rn-tester/js/examples/TextInput/TextInputSharedExamples.js b/packages/rn-tester/js/examples/TextInput/TextInputSharedExamples.js index 3aa30acc36ac..8f63ca66345e 100644 --- a/packages/rn-tester/js/examples/TextInput/TextInputSharedExamples.js +++ b/packages/rn-tester/js/examples/TextInput/TextInputSharedExamples.js @@ -1200,6 +1200,31 @@ module.exports = [ ); }, }, + { + title: 'Placeholder ellipsizing', + name: 'placeholderEllipsizing', + render: function (): React.Node { + const placeholder = + 'This placeholder is too long to fit on a single line'; + + return ( + + + + + ); + }, + }, { title: 'Clipping', name: 'clipping',