14 lines
284 B
JavaScript
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;
|