安装less

This commit is contained in:
禺狨
2023-03-03 14:24:55 +08:00
parent d13de512fc
commit afaafeba31
26 changed files with 78 additions and 54 deletions

11
src/pages/error/index.tsx Normal file
View File

@@ -0,0 +1,11 @@
import React from "react";
import styles from "./index.module.less";
export const ErrorPage: React.FC<any> = () => {
return (
<div id="error-page">
<h1>Oops!</h1>
<p></p>
</div>
);
};