added: 测试页面

This commit is contained in:
none
2023-03-03 14:20:16 +08:00
parent 050912f60d
commit d13de512fc
7 changed files with 59 additions and 3 deletions

View File

@@ -2,4 +2,5 @@ export * from "./home";
export * from "./login";
export * from "./dashboard";
export * from "./error";
export * from "./course";
export * from "./course";
export * from "./test";

View File

10
src/pages/test/index.tsx Normal file
View File

@@ -0,0 +1,10 @@
import React from "react";
import { UploadImageButton } from "../../compenents";
export const TestPage: React.FC = () => {
return (
<div>
<UploadImageButton></UploadImageButton>
</div>
);
};