// global state

import { reactive } from 'vue';

export const state = reactive({
    a: 1,
});
