1
0
Fork 0
freesewing/packages/create-freesewing-pattern/template/dark/src/index.js

23 lines
389 B
JavaScript
Raw Normal View History

2018-03-04 15:43:18 -05:00
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import styles from './styles.css'
export default class ExampleComponent extends Component {
static propTypes = {
text: PropTypes.string
}
render() {
const {
text
} = this.props
return (
<div className={styles.test}>
Example Component: {text}
</div>
)
}
}