1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-02-01 02:39:26 +00:00

14 lines
316 B
Svelte
Raw Normal View History

2023-01-10 17:28:27 +01:00
<script>
export let collection;
const indexes = [];
function getIndexes() {}
</script>
<div class="buttons">
2023-01-10 20:24:38 +01:00
<button class="btn" on:click={getIndexes}>Get indexes</button>
<button class="btn danger" disabled={!indexes?.length}>Drop selected</button>
2023-01-10 17:28:27 +01:00
<button class="btn">Create&hellip;</button>
</div>