feat: 空内容提醒

This commit is contained in:
Archer
2023-03-18 01:09:04 +08:00
parent 9384419c9d
commit 1c364eca35
3 changed files with 30 additions and 5 deletions

View File

@@ -0,0 +1,24 @@
import React from 'react';
import { Card, Flex, Box } from '@chakra-ui/react';
const Empty = () => {
return (
<Flex h={'100%'} alignItems={'center'} justifyContent={'center'}>
<Card p={5} w={'70%'}>
<Box fontSize={'xl'} fontWeight={'bold'} textAlign={'center'} pb={2}>
Fast Gpt version1.3
</Box>
<Box>
</Box>
<Box>使 Api Key </Box>
<br />
<Box></Box>
<br />
<Box>使</Box>
</Card>
</Flex>
);
};
export default Empty;