Add 'Damage received' section

This commit is contained in:
Cmdr McDonald
2016-12-17 10:46:52 +00:00
parent 6ac69a6388
commit b8cff0c2fc
7 changed files with 393 additions and 40 deletions

View File

@@ -18,6 +18,7 @@ import OffenceSummary from '../components/OffenceSummary';
import DefenceSummary from '../components/DefenceSummary';
import MovementSummary from '../components/MovementSummary';
import DamageDealt from '../components/DamageDealt';
import DamageReceived from '../components/DamageReceived';
import LineChart from '../components/LineChart';
import PowerManagement from '../components/PowerManagement';
import CostSection from '../components/CostSection';
@@ -353,6 +354,10 @@ export default class OutfittingPage extends Page {
<DamageDealt ship={ship} code={code} currentMenu={menu}/>
</div>
<div>
<DamageReceived ship={ship} code={code} currentMenu={menu}/>
</div>
</div>
);
}