git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
.container { | |
margin-top: 30px; | |
} | |
.header{ | |
text-decoration: underline; | |
margin-bottom: 30px; | |
} | |
.errorBlock{ |
.special-event { | |
color: white; | |
padding: 3px; | |
margin: 5px; | |
} |
import { BrowserModule } from '@angular/platform-browser'; | |
import { NgModule } from '@angular/core'; | |
import { FormsModule } from '@angular/forms'; | |
import { HttpModule } from '@angular/http'; | |
import {MatInputModule} from '@angular/material/input'; | |
import {MatButtonModule} from '@angular/material/button'; | |
import {BrowserAnimationsModule} from '@angular/platform-browser/animations'; | |
import {MatCardModule} from '@angular/material/card'; | |
import { AppComponent } from './app.component'; |
<div class="container"> | |
<div class="row"> | |
<div class="col-xs-12"> | |
<ol> | |
<li>Create two new Components (manually or with CLI): WarningAlert and SuccessAlert</li> | |
<li>Output them beneath each other in the AppComponent</li> | |
<li>Output a warning or success message in the Components</li> | |
<li>Style the Components appropriately (maybe some red/ green text?)</li> | |
</ol> | |
<p>Use external or internal templates and styles!</p> |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
import React, { Component } from 'react'; | |
import './App.css'; | |
import axios from 'axios' | |
import MenuCombo from './menucombo' | |
const heading = "Enter a price cap here for recommendations" | |
class App extends Component { | |
constructor(props){ |