Files
Graphite/frontend/src/components/panels/Properties.vue

16 lines
297 B
Vue

<template>
<LayoutCol class="properties-panel"></LayoutCol>
</template>
<style lang="scss"></style>
<script lang="ts">
import { defineComponent } from "vue";
import LayoutCol from "@/components/layout/LayoutCol.vue";
export default defineComponent({
components: { LayoutCol },
});
</script>