Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. function Home() {
  2. return (
  3. <div className="Home">
  4. <div className="Home-header">
  5. <img src={logo} className="Home-logo" alt="logo"/>
  6. <h2><Trans>Welcome to {React.js}</Trans></h2>
  7. </div>
  8.  
  9. <div className="Home-container">
  10. <h3 className="focus"><Trans>Declarative</Trans></h3>
  11.  
  12. <div>
  13. <p><Trans>
  14. {React} makes it painless to create interactive UIs.
  15. Design simple views for each state in your application,
  16. and {React} will efficiently update and render just
  17. the right components when your data changes.
  18. </Trans></p>
  19.  
  20. <p><Trans>Declarative views make your code more
  21. predictable and easier to debug.</Trans></p>
  22. </div>
  23. </div>
  24. </div>
  25. );
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement