mirror of
https://github.com/zhigang1992/react-native-paper.git
synced 2026-06-14 18:09:24 +08:00
17 lines
285 B
JavaScript
17 lines
285 B
JavaScript
/* @flow */
|
|
|
|
import * as React from 'react';
|
|
import Home from './src/Home';
|
|
|
|
export default class Index extends React.Component<{}> {
|
|
render() {
|
|
return <Home />;
|
|
}
|
|
}
|
|
|
|
export const meta = {
|
|
title: 'Home',
|
|
description: 'Material design for React Native',
|
|
link: 'index',
|
|
};
|