mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-08 01:01:36 +08:00
14 lines
428 B
TypeScript
14 lines
428 B
TypeScript
import React from "react";
|
|
import './HuntOptimizerComponent.css';
|
|
import { WantedItemsComponent } from "./WantedItemsComponent";
|
|
import { OptimizationResultComponent } from "./OptimizationResultComponent";
|
|
|
|
export function HuntOptimizerComponent() {
|
|
return (
|
|
<section className="ho-HuntOptimizerComponent">
|
|
<WantedItemsComponent />
|
|
<OptimizationResultComponent />
|
|
</section>
|
|
);
|
|
}
|