import React from 'react' import { useTranslations } from 'next-intl' import SummonUnit from '~components/summon/SummonUnit' import { SearchableObject } from '~types' import styles from './index.module.scss' // Props interface Props { grid: GridArray editable: boolean exists: boolean found?: boolean offset: number removeSummon: (id: string) => void updateObject: (object: SearchableObject, position: number) => void updateUncap: (id: string, position: number, uncap: number) => void updateTranscendence: (id: string, position: number, stage: number) => void } const ExtraSummonsGrid = (props: Props) => { const numSummons: number = 2 const t = useTranslations('common') return (

{t('summons.subaura')}

) } export default ExtraSummonsGrid