Main.js 711 B

123456789101112131415161718192021222324
  1. import "./Main.css";
  2. export const Main = ({ history }) => {
  3. return (
  4. <section id='body'>
  5. <button className='btn_form' onClick={() => history.push("./login")}>
  6. Login
  7. </button>
  8. <div className='box'>
  9. <div className='content'>
  10. <h1>Welcome To The CodePen</h1>
  11. <p>
  12. The best place to build, test, and discover front-end code. CodePen is a social development
  13. environment for front-end designers and developers. Build and deploy a website, show off your work,
  14. build test cases to learn and debug, and find inspiration.
  15. </p>
  16. </div>
  17. </div>
  18. <button className='btn_form' onClick={() => history.push("./reg")}>
  19. Reristration
  20. </button>
  21. </section>
  22. );
  23. };