import * as React from "react"; import { SkillElem } from "./SkillElem"; import { Skills } from "../Skills"; import { IBladeburner } from "../IBladeburner"; interface IProps { bladeburner: IBladeburner; onUpgrade: () => void; } export function SkillList(props: IProps): React.ReactElement { return ( <> {Object.keys(Skills).map((skill: string) => ( ))} ); }