Skip to content

Instantly share code, notes, and snippets.

@timbrandin
Created February 1, 2016 07:46
Show Gist options
  • Save timbrandin/bd9294d2a74b85b504ca to your computer and use it in GitHub Desktop.
Save timbrandin/bd9294d2a74b85b504ca to your computer and use it in GitHub Desktop.
import React from 'react';
import Template from 'react-template-helpers';
Template.Layout = ({content}) => (
<div>
<h1>My App</h1>
<hr />
<div>{content}</div>
</div>
);
Template.Welcome = ({name}) => (
<div>
Hello, {name}.
</div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment