Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2023
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function DetailsSection(props) {
  2.   return (
  3.     <div>
  4.       <div>
  5.         <h2>Profile</h2>
  6.        
  7.         <label htmlFor="name">Name: </label>
  8.         <input id="name" />
  9.         <button>Change</button>
  10.  
  11.         <p>Posts: </p>
  12.       </div>
  13.  
  14.       <div>
  15.         <h2>App</h2>
  16.  
  17.         <p>Users: </p>
  18.         <p>Total Posts: </p>
  19.       </div>
  20.     </div>
  21.   );
  22. }
  23.  
  24. function PostsSection(props) {
  25.   return (
  26.     <div>
  27.       <textarea />
  28.       <button>Post</button>
  29.     </div>
  30.   );
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement