2019-05-30 23:57:31 +08:00
|
|
|
import React from "react";
|
|
|
|
import './HuntOptimizerComponent.css';
|
2019-06-01 22:02:06 +08:00
|
|
|
import { WantedItemsComponent } from "./WantedItemsComponent";
|
|
|
|
import { loadItems } from "../../actions/items";
|
|
|
|
import { loadHuntMethods } from "../../actions/huntMethods";
|
2019-05-30 23:57:31 +08:00
|
|
|
|
2019-06-01 22:02:06 +08:00
|
|
|
export class HuntOptimizerComponent extends React.Component {
|
2019-06-01 05:20:13 +08:00
|
|
|
componentDidMount() {
|
|
|
|
loadItems('ephinea');
|
2019-06-01 22:02:06 +08:00
|
|
|
loadHuntMethods('ephinea');
|
2019-06-01 05:20:13 +08:00
|
|
|
}
|
|
|
|
|
2019-05-30 23:57:31 +08:00
|
|
|
render() {
|
|
|
|
return (
|
2019-06-01 22:02:06 +08:00
|
|
|
<section className="ho-HuntOptimizerComponent">
|
|
|
|
<WantedItemsComponent />
|
2019-06-01 05:20:13 +08:00
|
|
|
</section>
|
2019-05-30 23:57:31 +08:00
|
|
|
);
|
|
|
|
}
|
2019-06-01 22:02:06 +08:00
|
|
|
}
|