owltide/composables/states.ts
Hornwitser 250ca9a1ac Port application from Next.js to Nuxt
Nuxt is based on Vue.js and I find their building blocks to be much
neater compared to the React based Next.js.
2025-03-05 15:36:50 +01:00

3 lines
123 B
TypeScript

import type { Schedule } from "~/shared/types/schedule";
export const useSchedule = () => useState<Schedule>('schedule');