mirror of
https://github.com/zhigang1992/react-native-paper.git
synced 2026-06-13 17:45:46 +08:00
17 lines
321 B
JavaScript
17 lines
321 B
JavaScript
/* @flow */
|
|
|
|
import * as React from 'react';
|
|
import Showcase from './src/Showcase';
|
|
|
|
export default class ShowcasePage extends React.Component<{}> {
|
|
render() {
|
|
return <Showcase />;
|
|
}
|
|
}
|
|
|
|
export const meta = {
|
|
title: 'Showcase',
|
|
description: 'Showcase for applications build with Paper',
|
|
link: 'showcase',
|
|
};
|