uploading template files

This commit is contained in:
Rick van Lieshout
2018-02-12 14:47:28 +01:00
parent 995b47f324
commit 714bd6d962
30 changed files with 305 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
import React, { Component } from 'react';
import PropTypes from 'prop-types';
class componentName extends Component {
constructor(props) {
super(props);
}
componentWillMount() {
}
componentDidMount() {
}
componentWillReceiveProps(nextProps) {
}
shouldComponentUpdate(nextProps, nextState) {
}
componentWillUpdate(nextProps, nextState) {
}
componentDidUpdate(prevProps, prevState) {
}
componentWillUnmount() {
}
render() {
return (
<div>
</div>
);
}
}
componentName.propTypes = {
};
export default componentName;

View File

@@ -0,0 +1,13 @@
import React, { Component } from 'react';
class componentName extends Component {
render() {
return (
<div>
</div>
);
}
}
export default componentName;

View File

@@ -0,0 +1,8 @@
import React from "react";
const FunctionBasedComponent = ({param}) => {
return <span>Function based component</span>;
};
export default FunctionBasedComponent;