Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2024
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. import logo from './logo.svg';
  2. import './App.css';
  3. import { useState } from 'react';
  4.  
  5. const user = [{
  6. name: 'Hedy Lamarr',
  7. imageUrl: 'https://i.imgur.com/yXOvdOSs.jpg',
  8. imageSize: 90,
  9. },
  10. {
  11. name: 'Hedys sister',
  12. imageUrl: 'https://i.imgur.com/yXOvdOSs.jpg',
  13. imageSize: 90,
  14. },
  15. ];
  16.  
  17. function myApp({count, handleClick}) {
  18.  
  19. return
  20. (
  21. <div className="avatar"> hello
  22. <MyButton onClick={handleClick} count={count} />
  23. <MyButton onClick={handleClick} count={count} />
  24. </div>
  25. );
  26. }
  27. function MyButton({count, onClick}) {
  28. <button onClick={onClick}>
  29. clicked {count} times
  30. </button>
  31. }
  32.  
  33. function Profile() {
  34.  
  35. return (
  36. user.map( user =>
  37. <>
  38. <h1>{user.name}</h1>
  39. <img
  40. className="avatar"
  41. src={user.imageUrl}
  42. alt={'Photo of ' + user.name}
  43. style={{
  44. width: user.imageSize,
  45. height: user.imageSize
  46. }}
  47. />
  48. </> )
  49. );
  50. }
  51. function App() {
  52. const [count, setCount] = useState(0)
  53. function handleClick(){
  54. setCount(count + 1)
  55. }
  56. return (
  57. <>
  58. <Profile />
  59. <myApp count={count} onClick={handleClick} />
  60. </>
  61.  
  62. );
  63. }
  64. export default App;
  65.  
  66.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement