This commit is contained in:
archer
2023-07-01 13:09:02 +08:00
parent 4c54e1821b
commit 9bdd5f522d
85 changed files with 4738 additions and 1236 deletions

View File

@@ -0,0 +1,26 @@
import React from 'react';
import { Box, useTheme } from '@chakra-ui/react';
import { useRouter } from 'next/router';
const MyApps = () => {
const theme = useTheme();
const router = useRouter();
return (
<Box>
<Box
className="textlg"
borderBottom={theme.borders.base}
letterSpacing={1}
py={3}
px={5}
fontSize={'24px'}
fontWeight={'bold'}
onClick={() => router.push(`/app/detail?appId=642adec15f01d67d4613efdb`)}
>
</Box>
</Box>
);
};
export default MyApps;