pull/1/head
Rob Hedgpeth 2020-02-05 10:03:55 -06:00
rodzic 66111b6119
commit 9aca73f557
2 zmienionych plików z 10 dodań i 1 usunięć

Wyświetl plik

@ -25,6 +25,7 @@ The following will walk you through the steps for getting this application up an
1. [Grab the code](#grab-code)
2. [Build the code](#build-code)
3. [Run the app](#run-app)
4. [Creating data](#create-data)
5. [Smart Transactions](#smart-transactions)
6. [Cross-Engine Queries](#cross-engine-queries)
7. [Support and Contribution](#support-contribution)
@ -228,6 +229,14 @@ npm start
</kbd>
</p>
### Adding data for the app <a name="create-data"></a>
Upon running the application you will notice that searching for flights and viewin upcoming trips yields no results. This is because there currently no transactional flights, tickets, or trips data. Because this application is merely meant for demonstration purposes only you will need to provide *relevant* data within the following:
* innodb_schema.flights
* innodb_schema.tickets
* innodb_schema.trips
## Smart Transactions <a name="smart-transactions"></a>
At this point you're probably wondering, what are smart transactions?

Wyświetl plik

@ -90,7 +90,7 @@ export default class Dashboard extends Component {
<h3>Book a Trip!</h3>
</div>
<div onClick={() => this.toggleSection(1)} className={this.getNavClasses(1)}>
<h3>Upcoming Trips (2)</h3>
<h3>Upcoming Trips</h3>
</div>
<div style={{clear: "both"}} />
</div>