<script setup>
import Grid from "../../src/Grid.vue";
</script>

<template>
  <div id="app">
    <Grid :rows="10" :cols="5"></Grid>
  </div>
</template>

<style scoped></style>