Skip to content
Snippets Groups Projects
Verified Commit 3b446310 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Added placeholder pod picker

parent 121381fa
No related branches found
No related tags found
No related merge requests found
<template>
<div class="pod-picker">Pod picker will be here</div>
</template>
<script>
export default {
computed: {
labels () {
return {}
}
}
};
</script>
.pod-picker {
height: 10em;
padding: 1em;
background-color: rgba(9, 9, 9, 0.1);
}
......@@ -3,5 +3,6 @@
@import "./variables";
@import "./1-core/reset";
@import "./2-components/navigation";
@import "./2-components/pod-picker";
@import "./3-base/layout";
@import "./5-screens/home";
......@@ -182,7 +182,11 @@
</template>
<script>
import PodPicker from "../components/PodPicker"
export default {
components: {
PodPicker
}
};
</script>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment