课程详情初步

This commit is contained in:
禺狨
2023-03-24 17:45:47 +08:00
parent b24e4e09b1
commit 351e755fe2
13 changed files with 438 additions and 11 deletions

View File

@@ -1,13 +1,7 @@
import { createSlice } from "@reduxjs/toolkit";
type UserInterface = {
id: number;
name: string;
email: string;
avatar: string;
};
type UserStoreInterface = {
user: UserInterface | null;
user: null;
departments: string[];
isLogin: boolean;
};