Added initial landing page

This commit is contained in:
Keannu Christian Bernasol 2023-11-13 22:19:33 +08:00
parent 31d830b63d
commit fd4c2e9ad6
9 changed files with 461 additions and 50 deletions

View file

@ -0,0 +1,12 @@
import { configureStore } from "@reduxjs/toolkit";
const store = configureStore({
reducer: {},
});
export default store;
// Infer the `RootState` and `AppDispatch` types from the store itself
export type RootState = ReturnType<typeof store.getState>;
// Inferred type: {posts: PostsState, comments: CommentsState, users: UsersState}
export type AppDispatch = typeof store.dispatch;