UNPKG

spencer-kit-project-templates

Version:
18 lines 624 B
'use strict' import React,{Component}from 'react'; import BuildConfig from 'build-config'; import AppRegister from 'app-register' class Index extends Component{ constructor(...props){ super(...props) } 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> } } AppRegister.register(<Index />);