Updates
rodzic
66111b6119
commit
9aca73f557
|
@ -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?
|
||||
|
|
|
@ -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>
|
||||
|
|
Ładowanie…
Reference in New Issue