This commit is contained in:
2026-03-09 13:22:45 +08:00
commit 3b392f4e83
300 changed files with 54217 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import React from 'react';
import { styled } from 'umi';
const Wrapper = styled.div`
h1 { background: rgb(121, 184, 242); }
`;
export default function Page() {
return (
<Wrapper>
<h1>Page index</h1>
</Wrapper>
);
}