Advertisement
Guest User

Untitled

a guest
Apr 27th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const MyComponent = (props) => (
  2.     <input type="text"></input>
  3. );
  4.  
  5. const App = () => (
  6.     <MyComponent minlength="4" maxlength="8"></MyComponent>
  7. );
  8.  
  9. render(<App />, document.getElementById('root'));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement