Last active
May 27, 2018 02:27
-
-
Save maisonm/3bd32daf64c7fea35a98a17999af340d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import LightningBolt from './assets/lightning.svg'; | |
const Home = () => { | |
return ( | |
<div> | |
<div className='header'> | |
<h2>Weather Forcast</h2> | |
<img src={LightningBolt}/> | |
</div> | |
<div className="instructions"> | |
<p>Enter a US zipcode below to get the current weather conditions for that area.</p> | |
</div> | |
<div className='zipcodeInput'> | |
<form method='POST' action='/search-location'> | |
<input type='text' placeholder='Enter zipcode..' name='zipcode'/> | |
<button>ENTER</button> | |
</form> | |
</div> | |
</div> | |
) | |
} | |
export default Home |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment