UNPKG

spencer-kit-project-templates

Version:
25 lines (23 loc) 691 B
'use strict' import React, { Component } from 'react'; import ScreenComponent from './../../components/ScreenComponent'; class Main extends ScreenComponent { static pageConfig = { path:'/' } constructor(...props) { super(...props); this.navigationOptions = { title:'Main' } } render() { return <div className='content'> <p>welcome to use <a href='https://github.com/pallyoung/spencer-kit'>spencer-kit-cli</a></p> <p>get start to edit index.js</p> <p>project name {BuildConfig.project}</p> <p>current env {BuildConfig.ENV}</p> </div> } } export default Main;