Blame view

imports/ui/pages/index.js 427 Bytes
2b1ad7917   tmcdeveloper   wip moving to Met...
1
  import React from 'react';
76dd62c7b   tmcdeveloper   fix eslint error ...
2
  import { Jumbotron } from 'react-bootstrap';
2b1ad7917   tmcdeveloper   wip moving to Met...
3
4
  
  export const Index = () => (
7df77f0fa   tmcdeveloper   finish wiring up ...
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>
c1d5d8330   tmcdeveloper   bump Base versions
9
      <p style={ { fontSize: '16px', color: '#aaa' } }>Currently at v4.2.0</p>
7df77f0fa   tmcdeveloper   finish wiring up ...
10
    </Jumbotron>
f0c912bf1   tmcdeveloper   add method tests ...
11
  );