import { defineStore } from 'pinia' export const useCategoriesStore = defineStore({ id: 'CategoriesStore', state: () => ({ categories : null }), actions: {} })