import React from 'react' import WeaponUnit from '~components/WeaponUnit' import './index.scss' // Props interface Props { grid: GridArray editable: boolean found?: boolean offset: number updateObject: (object: Character | Weapon | Summon, position: number) => void updateUncap: (id: string, position: number, uncap: number) => void } const ExtraWeapons = (props: Props) => { const numWeapons: number = 3 return (
Additional
Weapons
) } export default ExtraWeapons