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