|
@@ -1,5 +1,6 @@
|
|
import React, { Component } from "react";
|
|
import React, { Component } from "react";
|
|
import PropTypes from "prop-types";
|
|
import PropTypes from "prop-types";
|
|
|
|
+import { connect } from "react-redux";
|
|
|
|
|
|
import { ban, authenticate } from "actions/app";
|
|
import { ban, authenticate } from "actions/app";
|
|
import Menu from "components/Global/Menu";
|
|
import Menu from "components/Global/Menu";
|
|
@@ -7,6 +8,8 @@ import Menu from "components/Global/Menu";
|
|
import io from "../../io";
|
|
import io from "../../io";
|
|
import config from "../../../../config/default";
|
|
import config from "../../../../config/default";
|
|
|
|
|
|
|
|
+@connect()
|
|
|
|
+
|
|
export default class App extends Component {
|
|
export default class App extends Component {
|
|
static propTypes = {
|
|
static propTypes = {
|
|
children: PropTypes.object,
|
|
children: PropTypes.object,
|