FitTrackee/fittrackee_client/src/store/index.ts

8 lines
203 B
TypeScript
Raw Normal View History

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