summaryrefslogtreecommitdiff
path: root/src/BattleRoyaleTab.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/BattleRoyaleTab.vue')
-rw-r--r--src/BattleRoyaleTab.vue4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/BattleRoyaleTab.vue b/src/BattleRoyaleTab.vue
index 48d8b25..d3c51f2 100644
--- a/src/BattleRoyaleTab.vue
+++ b/src/BattleRoyaleTab.vue
@@ -1,5 +1,7 @@
<template>
<div>
+ <hero-search-box :reportService="reportService"></hero-search-box>
+
<h2 class="title is-2">Battle Royale Hero Statistics</h2>
<report-table :report="report" :totalPicks="totalPicks"></report-table>
</div>
@@ -8,6 +10,7 @@
<script>
import Vue from 'vue';
import ReportTable from './ReportTable.vue';
+import HeroSearchBox from './HeroSearchBox.vue';
export default Vue.component('battle-royale-tab', {
props: [ 'reportService' ],
@@ -21,6 +24,7 @@ export default Vue.component('battle-royale-tab', {
},
components: {
ReportTable,
+ HeroSearchBox,
},
});
</script>