Files
react-native-paper/docs/pages/1.showcase.js
2018-04-11 12:21:31 +02:00

17 lines
330 B
JavaScript

/* @flow */
import * as React from 'react';
import Showcase from './src/Showcase';
export default class ShowcasePage extends React.Component<{}> {
static meta = {
title: 'Showcase',
description: 'Showcase for applications build with Paper',
permalink: 'showcase',
};
render() {
return <Showcase />;
}
}