()
| 1 | import React from 'react' |
| 2 | |
| 3 | const Newsletter = () => { |
| 4 | const handleSubmit = (event) => { |
| 5 | event.preventDefault(); |
| 6 | }; |
| 7 | |
| 8 | return ( |
| 9 | <section className='newsletter'> |
| 10 | <div className="newsletter-background"> |
| 11 | Newsletter |
| 12 | </div> |
| 13 | <h1>Subscribe Our Newsletter</h1> |
| 14 | <p>Get the latest information and promo offers directly</p> |
| 15 | <form onSubmit={handleSubmit}> |
| 16 | <input type='email' placeholder='Input email address'></input> |
| 17 | <button type='submit'>Get Started</button> |
| 18 | </form> |
| 19 | </section> |
| 20 | ) |
| 21 | } |
| 22 | |
| 23 | export default Newsletter |
nothing calls this directly
no outgoing calls
no test coverage detected