work and created develop branch

This commit is contained in:
2024-11-14 17:46:13 -05:00
parent 9cbf394b0c
commit cca47965a6
36 changed files with 2315 additions and 54 deletions

View File

@@ -0,0 +1,25 @@
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 = {
};