todos-contra-el-fuego-web/imports/ui/pages/ExamplePage/ExamplePage.js
2017-06-13 08:12:26 -05:00

14 lines
284 B
JavaScript

import React from 'react';
import Page from '../Page/Page';
const ExamplePage = () => (
<div className="ExamplePage">
<Page
title="My Example Page"
subtitle="A subtitle for my example page."
page="example-page"
/>
</div>
);
export default ExamplePage;