Skip to content

Instantly share code, notes, and snippets.

@acomito
Created December 8, 2016 14:00
Show Gist options
  • Save acomito/792bec0bf24fe21d435df3981ee18bc7 to your computer and use it in GitHub Desktop.
Save acomito/792bec0bf24fe21d435df3981ee18bc7 to your computer and use it in GitHub Desktop.
import React from 'react';
import { Jumbotron } from 'react-bootstrap';
const Index = () => (
<div className="Index">
<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>
<p style={ { fontSize: '16px', color: '#aaa' } }>Currently at v4.10.0</p>
</Jumbotron>
</div>
);
export default Index;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment