14 lines
225 B
TypeScript
14 lines
225 B
TypeScript
import { Box } from '@chakra-ui/react';
|
|
|
|
export const EmptyEnd = () => {
|
|
return (
|
|
<Box
|
|
width="full"
|
|
height="25%"
|
|
minHeight="250px"
|
|
// borderWidth="1px"
|
|
// borderColor="red"
|
|
></Box>
|
|
);
|
|
};
|