Blame view
imports/ui/pages/index.js
427 Bytes
2b1ad7917
|
1 |
import React from 'react'; |
76dd62c7b
|
2 |
import { Jumbotron } from 'react-bootstrap'; |
2b1ad7917
|
3 4 |
export const Index = () => ( |
7df77f0fa
|
5 6 7 8 |
<Jumbotron className="text-center"> <h2>Base</h2> <p>A starting point for Meteor applications.</p> <p><a className="btn btn-success" href="https://themeteorchef.com/base" role="button">Read the Documentation</a></p> |
c1751f34f
|
9 |
<p style={ { fontSize: '16px', color: '#aaa' } }>Currently at v4.5.0</p> |
7df77f0fa
|
10 |
</Jumbotron> |
f0c912bf1
|
11 |
); |