Improved firesmap

This commit is contained in:
vjrj 2017-12-15 17:43:45 +01:00
parent 4c5aef6e4f
commit 56a7468ae3
7 changed files with 214 additions and 132 deletions

View file

@ -1,22 +1,18 @@
/* eslint-disable import/no-absolute-path */
import React from 'react';
// import PropTypes from 'prop-types';
import { translate } from 'react-i18next';
class Sandbox extends React.Component {
constructor(props) {
super(props);
/* this.state = {
* init: false
* }; */
}
componentDidMount() {
// this.setState({init: true});
}
render() {
return (
<div></div>
<div>
<div />
</div>
);
}
}
@ -25,4 +21,4 @@ Sandbox.propTypes = {
// history: PropTypes.object.isRequired
};
export default translate([], { wait: true }) (Sandbox);
export default translate([], { wait: true })(Sandbox);