Main.js 845 B

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