mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
21 lines
576 B
TypeScript
21 lines
576 B
TypeScript
import React from "react";
|
|
import './HuntOptimizerComponent.css';
|
|
import { WantedItemsComponent } from "./WantedItemsComponent";
|
|
import { loadItems } from "../../actions/items";
|
|
import { loadHuntMethods } from "../../actions/huntMethods";
|
|
|
|
export class HuntOptimizerComponent extends React.Component {
|
|
componentDidMount() {
|
|
loadItems('ephinea');
|
|
loadHuntMethods('ephinea');
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<section className="ho-HuntOptimizerComponent">
|
|
<WantedItemsComponent />
|
|
</section>
|
|
);
|
|
}
|
|
}
|