mirror of
https://github.com/zhigang1992/react-native-paper.git
synced 2026-06-17 04:09:48 +08:00
17 lines
330 B
JavaScript
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 />;
|
|
}
|
|
}
|