import { ref } from 'vue'
import { defineStore } from 'pinia'


export const useInfoChange = defineStore('infoChangeStore', () => {
  const data = ref({})

  return { data }
})