Commit 202aacc4e496881d675e4d65ca78a7c1cf49bf5e

Authored by themeteorchef
1 parent 0e6cb75ad1
Exists in master

bump Base version in README.md and Index.js component

Showing 2 changed files with 2 additions and 2 deletions   Show diff stats
1 # The Meteor Chef - Base 1 # The Meteor Chef - Base
2 A starting point for Meteor apps. 2 A starting point for Meteor apps.
3 3
4 <table> 4 <table>
5 <tbody> 5 <tbody>
6 <tr> 6 <tr>
7 <th>Base Version</th> 7 <th>Base Version</th>
8 <td>v4.11.0</td> 8 <td>v4.11.1</td>
9 </tr> 9 </tr>
10 <tr> 10 <tr>
11 <th>Meteor Version</th> 11 <th>Meteor Version</th>
12 <td>v1.4.2.3</td> 12 <td>v1.4.2.3</td>
13 </tr> 13 </tr>
14 </tbody> 14 </tbody>
15 </table> 15 </table>
16 16
17 [Read the Documentation](http://themeteorchef.com/base) 17 [Read the Documentation](http://themeteorchef.com/base)
18 18
imports/ui/pages/Index.js
1 import React from 'react'; 1 import React from 'react';
2 import { Jumbotron } from 'react-bootstrap'; 2 import { Jumbotron } from 'react-bootstrap';
3 3
4 const Index = () => ( 4 const Index = () => (
5 <div className="Index"> 5 <div className="Index">
6 <Jumbotron className="text-center"> 6 <Jumbotron className="text-center">
7 <h2>Base</h2> 7 <h2>Base</h2>
8 <p>A starting point for Meteor applications.</p> 8 <p>A starting point for Meteor applications.</p>
9 <p><a className="btn btn-success" href="https://themeteorchef.com/base" role="button">Read the Documentation</a></p> 9 <p><a className="btn btn-success" href="https://themeteorchef.com/base" role="button">Read the Documentation</a></p>
10 <p style={ { fontSize: '16px', color: '#aaa' } }>Currently at v4.11.0</p> 10 <p style={ { fontSize: '16px', color: '#aaa' } }>Currently at v4.11.1</p>
11 </Jumbotron> 11 </Jumbotron>
12 </div> 12 </div>
13 ); 13 );
14 14
15 export default Index; 15 export default Index;
16 16