mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
7 lines
242 B
TypeScript
7 lines
242 B
TypeScript
import { asyncThunkCreator, buildCreateSlice } from "@reduxjs/toolkit";
|
|
|
|
// `buildCreateSlice` allows us to create a slice with async thunks.
|
|
export const createAppSlice = buildCreateSlice({
|
|
creators: { asyncThunk: asyncThunkCreator },
|
|
});
|