export const useStore = defineStore('main', () => {
	const data = ref()

	return {
		data
	}
})
