tildetv-frontend/src/pages/Playground.js

12 lines
233 B
JavaScript

import * as React from 'react';
import Page from '../containers/Page';
const Playground = () => (
<Page>
<h1>component playground</h1>
<p>test your components here, y&apos;all.</p>
</Page>
);
export default Playground;