Skip to content
  • This project
    • Loading...
  • Sign in

templates / pkg-template

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • pkg-template
  • boilerplate
  • src
  • index.tsx
  • McLemore's avatar
    fix placeholder · f218cf4a
    f218cf4a Browse Files
    McLemore committed 2018-11-17 17:55:45 +0800
index.tsx 348 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
import React from 'react'
import styles from './styles/index.less'

interface PropsInterface {

}

interface StateInterface {

}

class Component extends React.Component<PropsInterface, StateInterface> {
  render () {
    return (
      <div className={styles.container}>
        {{ projectName }}
      </div>
    )
  }
}

export default Component