mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-05 18:26:45 -05:00
26 lines
448 B
JavaScript
26 lines
448 B
JavaScript
import React, { Component } from 'react'
|
|
import PropTypes from 'prop-types' //ES6
|
|
import styles from './styles.module.css'
|
|
|
|
export default class BasicClassComponent extends Component {
|
|
constructor(props){
|
|
super(props)
|
|
this.state = {
|
|
|
|
}
|
|
}
|
|
|
|
render(){
|
|
return (
|
|
<div >
|
|
<h1>Basic Component</h1>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
BasicClassComponent.propTypes = {
|
|
|
|
};
|
|
|