import React from 'react' import SummonUnit from '~components/SummonUnit' import './index.scss' // Props interface Props { grid: GridArray editable: boolean exists: boolean found?: boolean offset: number updateObject: (object: Character | Weapon | Summon, position: number) => void updateUncap: (id: string, position: number, uncap: number) => void } const ExtraSummons = (props: Props) => { const numSummons: number = 2 return (
Sub Aura Summons
) } export default ExtraSummons