FitTrackee/fittrackee_client/src/store/index.ts

9 lines
199 B
TypeScript
Raw Normal View History

2021-07-25 13:23:25 +02:00
import { createStore } from 'vuex'
2021-08-11 22:21:26 +02:00
2021-08-11 18:33:02 +02:00
import root from '@/store/modules/root'
import { IRootState } from '@/store/modules/root/types'
2021-08-11 18:33:02 +02:00
const store = createStore<IRootState>(root)
export default store