forked from eesast/web
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:zou-y-t/web
- Loading branch information
Showing
10 changed files
with
2,891 additions
and
1,418 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// 课程详情页面只有课程管理员可以编辑,普通学生只能查看 | ||
|
||
import React from "react"; | ||
// import { | ||
// Badge, | ||
// Button, | ||
// Card, | ||
// Divider, | ||
// Drawer, | ||
// Form, | ||
// Modal, | ||
// message, | ||
// Rate, | ||
// Row, | ||
// Space, | ||
// Spin, | ||
// Tooltip, | ||
// Typography, | ||
// } from "antd"; | ||
// import { ReloadOutlined } from "@ant-design/icons"; | ||
import { CourseProps } from "."; | ||
//import * as graphql from "@/generated/graphql"; | ||
|
||
const CourseDetail: React.FC<CourseProps> = ({ | ||
course_uuid, | ||
mode, | ||
user, | ||
}: any) => { | ||
return <></>; | ||
}; | ||
|
||
export default CourseDetail; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.