Skip to content

Instantly share code, notes, and snippets.

@maisonm
Last active May 27, 2018 02:27
Show Gist options
  • Save maisonm/3bd32daf64c7fea35a98a17999af340d to your computer and use it in GitHub Desktop.
Save maisonm/3bd32daf64c7fea35a98a17999af340d to your computer and use it in GitHub Desktop.
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